Skip to content

Commit 0276fbb

Browse files
committed
fix: add second arg to includes
1 parent 22bc222 commit 0276fbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gn-tools-pipelines/templates/gntoolspipelines-job.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: batch/v1
22
kind: Job
33
metadata:
4-
name: {{ include "gn-tools-pipelines.fullname" }}
4+
name: {{ include "gn-tools-pipelines.fullname" . }}
55
labels:
66
{{ include "gn-tools-pipelines.labels" . | nindent 4 }}
77
spec:
@@ -12,7 +12,7 @@ spec:
1212
image: curlimages/curl:latest
1313
command: ['sh', '-c', 'while [ `curl -Lk --write-out "%{http_code}\n" --silent --output /dev/null "{{ .Values.config.elasticsearch.host }}/{{ .Values.config.elasticsearch.index }}"` -ne 200 ]; do sleep 2; done']
1414
containers:
15-
- name: {{ include "gn-tools-pipelines.fullname" }}
15+
- name: {{ include "gn-tools-pipelines.fullname" . }}
1616
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
1717
imagePullPolicy: {{ .Values.image.pullPolicy }}
1818
env:

0 commit comments

Comments
 (0)