famous-afternoon-28388
01/18/2023, 9:55 AMtests:
- name: unit
command: ["pytest", "tests"]
but the relevant file isn't on the pod. Is what I'm looking for possible, or do I need to find some workaround?apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Release.Name }}-configmap
data:
config.yaml: |
{{ tpl (toYaml .Values.app) . | nindent 4 }}
I use helm templating, so I'm not sure if I'm able to do the same with Garden's configmap supportquaint-dress-831
01/23/2023, 2:01 PMyamlEncode
and indent
helper functions to get your desired result.famous-afternoon-28388
01/26/2023, 8:38 AM