Noggin: try again to fix the configmap
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
This commit is contained in:
parent
e20344e493
commit
adf9345c83
2 changed files with 4 additions and 4 deletions
|
@ -18,7 +18,7 @@
|
||||||
register: ipa_ca_cert_var
|
register: ipa_ca_cert_var
|
||||||
- name: Register the IPA CA cert in a fact
|
- name: Register the IPA CA cert in a fact
|
||||||
set_fact:
|
set_fact:
|
||||||
ipa_ca_cert: "{{ ipa_ca_cert_var.content }}"
|
ipa_ca_cert: "{{ ipa_ca_cert_var.content | b64decode }}"
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
# RabbitMQ is not redeployed in staging yet
|
# RabbitMQ is not redeployed in staging yet
|
||||||
|
|
|
@ -40,8 +40,8 @@ items:
|
||||||
name: ipa-config
|
name: ipa-config
|
||||||
data:
|
data:
|
||||||
ldap.conf: |-
|
ldap.conf: |-
|
||||||
{{ load_file('ipa-ldap.conf') | indent(6) }}
|
{{ load_file('ipa-ldap.conf') | indent(6) }}
|
||||||
default.conf: |-
|
default.conf: |-
|
||||||
{{ load_file('ipa-default.conf') | indent(6) }}
|
{{ load_file('ipa-default.conf') | indent(6) }}
|
||||||
ca.crt: |-
|
ca.crt: |-
|
||||||
{{ ipa_ca_cert | indent(6) }}
|
{{ ipa_ca_cert | indent(6) }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue