From 53ce30a5ceae9b9f9def4bcc8f82d65c2e31d360 Mon Sep 17 00:00:00 2001 From: Mikolaj Izdebski Date: Sun, 27 Jan 2019 21:33:55 +0100 Subject: [PATCH] Fix Koschei secret object indentation --- roles/openshift-apps/koschei/templates/frontend-config.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/roles/openshift-apps/koschei/templates/frontend-config.yml b/roles/openshift-apps/koschei/templates/frontend-config.yml index d16b675cdc..d6cec448ef 100644 --- a/roles/openshift-apps/koschei/templates/frontend-config.yml +++ b/roles/openshift-apps/koschei/templates/frontend-config.yml @@ -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 }}