Skip to content

Commit

Permalink
feat: fetch images from global.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-lourenco-lopes committed Jan 3, 2025
1 parent a7514c6 commit 1364d7e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/zeebe-benchmark/templates/starter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
containers:
- name: starter
image: "{{ .Values.starter.image.repository }}/starter:{{ .Values.starter.image.tag }}"
image: "{{ .Values.global.image.repository }}/starter:{{ .Values.global.image.tag }}"
imagePullPolicy: {{ .Values.global.image.pullPolicy }}
env:
- name: JDK_JAVA_OPTIONS
Expand Down
2 changes: 1 addition & 1 deletion charts/zeebe-benchmark/templates/workers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
spec:
containers:
- name: {{ $workerName }}-worker
image: "{{ $.Values.workers.image.repository }}/worker:{{ $.Values.workers.image.tag }}"
image: "{{ $.Values.global.image.repository }}/worker:{{ $.Values.global.image.tag }}"
imagePullPolicy: {{ $.Values.global.image.pullPolicy }}
env:
- name: JDK_JAVA_OPTIONS
Expand Down
2 changes: 1 addition & 1 deletion charts/zeebe-benchmark/test/golden/publisher.golden.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
spec:
containers:
- name: publisher
image: "/starter:"
image: "gcr.io/zeebe-io/starter:SNAPSHOT"
imagePullPolicy: Always
env:
- name: JDK_JAVA_OPTIONS
Expand Down
2 changes: 1 addition & 1 deletion charts/zeebe-benchmark/test/golden/timer.golden.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
spec:
containers:
- name: timer
image: "/starter:"
image: "gcr.io/zeebe-io/starter:SNAPSHOT"
imagePullPolicy: Always
env:
- name: JDK_JAVA_OPTIONS
Expand Down

0 comments on commit 1364d7e

Please sign in to comment.