The chart templates out the following container:
- name: datasource-syncer
image: {{.Values.images.datasourceSyncer.image}}:{{.Values.images.datasourceSyncer.tag}}
args:
- "--datasource-uids=$DATASOURCE_UIDS"
- "--grafana-api-endpoint=$GRAFANA_API_ENDPOINT"
- "--grafana-api-token=$GRAFANA_API_TOKEN"
- "--project-id=$PROJECT_ID"
Those $VARS seem like they ought to be .Values. Or, the .Values should translate to environment vars for the pod (which would then require this be run through a shell, or to use the syntax here.
There's also no values.yaml file, so .Values.images is undefined by default. It'd be good to have that, just to know what the authoritative upstream for the image is.
But as is, the chart seems unusable.
Am I missing something?
The chart templates out the following container:
Those
$VARSseem like they ought to be.Values. Or, the.Valuesshould translate to environment vars for the pod (which would then require this be run through a shell, or to use the syntax here.There's also no
values.yamlfile, so.Values.imagesis undefined by default. It'd be good to have that, just to know what the authoritative upstream for the image is.But as is, the chart seems unusable.
Am I missing something?