Noggin: try again to fix the configmap

Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
This commit is contained in:
Aurélien Bompard 2020-08-19 18:10:26 +02:00
parent e20344e493
commit adf9345c83
No known key found for this signature in database
GPG key ID: 31584CFEB9BF64AD
2 changed files with 4 additions and 4 deletions

View file

@ -18,7 +18,7 @@
register: ipa_ca_cert_var
- name: Register the IPA CA cert in a fact
set_fact:
ipa_ca_cert: "{{ ipa_ca_cert_var.content }}"
ipa_ca_cert: "{{ ipa_ca_cert_var.content | b64decode }}"
roles:
# RabbitMQ is not redeployed in staging yet

View file

@ -40,8 +40,8 @@ items:
name: ipa-config
data:
ldap.conf: |-
{{ load_file('ipa-ldap.conf') | indent(6) }}
{{ load_file('ipa-ldap.conf') | indent(6) }}
default.conf: |-
{{ load_file('ipa-default.conf') | indent(6) }}
{{ load_file('ipa-default.conf') | indent(6) }}
ca.crt: |-
{{ ipa_ca_cert | indent(6) }}
{{ ipa_ca_cert | indent(6) }}