Fix Koschei secret object indentation

This commit is contained in:
Mikolaj Izdebski 2019-01-27 21:33:55 +01:00
parent addf73cf4a
commit 53ce30a5ce

View file

@ -3,5 +3,7 @@ kind: Secret
metadata:
name: frontend-config
stringData:
config-frontend.cfg: "{{ lookup('template', roles_path + '/openshift-apps/koschei/templates/config-frontend.cfg.j2') }}"
httpd.conf: "{{ lookup('template', roles_path + '/openshift-apps/koschei/templates/httpd.conf.j2') }}"
config-frontend.cfg: |-
{{ lookup('template', roles_path + '/openshift-apps/koschei/templates/config-frontend.cfg.j2') | indent }}
httpd.conf: |-
{{ lookup('template', roles_path + '/openshift-apps/koschei/templates/httpd.conf.j2') | indent }}