Skip to content

Commit

Permalink
fix: add second arg to includes
Browse files Browse the repository at this point in the history
  • Loading branch information
f-necas committed Feb 19, 2024
1 parent 22bc222 commit 0276fbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gn-tools-pipelines/templates/gntoolspipelines-job.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: batch/v1
kind: Job
metadata:
name: {{ include "gn-tools-pipelines.fullname" }}
name: {{ include "gn-tools-pipelines.fullname" . }}
labels:
{{ include "gn-tools-pipelines.labels" . | nindent 4 }}
spec:
Expand All @@ -12,7 +12,7 @@ spec:
image: curlimages/curl:latest
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']
containers:
- name: {{ include "gn-tools-pipelines.fullname" }}
- name: {{ include "gn-tools-pipelines.fullname" . }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
env:
Expand Down

0 comments on commit 0276fbb

Please sign in to comment.