kerneltest: try to fix syntax issue with configmap.yml

Signed-off-by: Ryan Lerch <rlerch@redhat.com>
This commit is contained in:
Ryan Lercho 2024-03-12 14:08:59 +10:00
parent 2a7ed489f2
commit 3096d7fe6e

View file

@ -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) }}