kerneltest: try to fix syntax issue with configmap.yml
Signed-off-by: Ryan Lerch <rlerch@redhat.com>
This commit is contained in:
parent
2a7ed489f2
commit
3096d7fe6e
1 changed files with 5 additions and 5 deletions
|
@ -12,9 +12,9 @@ items:
|
|||
app: kerneltest
|
||||
data:
|
||||
config.toml: |-
|
||||
{{ load_file('config.toml') | indent }}
|
||||
{{ load_file('config.toml') | indent(6) }}
|
||||
client_secrets.json: |-
|
||||
{{ load_file('client_secrets.json') | indent }}
|
||||
{{ load_file('client_secrets.json') | indent(6) }}
|
||||
- apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
|
@ -23,9 +23,9 @@ items:
|
|||
app: kerneltest
|
||||
data:
|
||||
alembic_upgrade.sh: |-
|
||||
{{ load_file('alembic_upgrade.sh') | indent }}
|
||||
{{ load_file('alembic_upgrade.sh') | indent(6) }}
|
||||
alembic.ini: |-
|
||||
{{ load_file('alembic.ini') | indent }}
|
||||
{{ load_file('alembic.ini') | indent(6) }}
|
||||
- apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
|
@ -34,5 +34,5 @@ items:
|
|||
app: kerneltest
|
||||
data:
|
||||
alembic_upgrade.sh: |-
|
||||
{{ load_file('wsgi.py') | indent }}
|
||||
{{ load_file('wsgi.py') | indent(6) }}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue