Skip to content

Commit aa4bea1

Browse files
authored
Use default container command. (#118)
Add v prefix to docker tags and default to our docker hub org.
1 parent ef4e8ec commit aa4bea1

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

helm/temporal-worker-controller/templates/manager.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,8 @@ spec:
4747
{{- end }}
4848
containers:
4949
- name: manager
50-
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
50+
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default (printf "v%s" .Chart.AppVersion)}}"
5151
imagePullPolicy: {{ .Values.image.pullPolicy }}
52-
command:
53-
- /manager
5452
env:
5553
- name: CONTROLLER_IDENTITY
5654
value: "{{ .Release.Name }}/{{ .Release.Namespace }}"

helm/temporal-worker-controller/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
image:
2-
repository: temporal-worker-controller
2+
repository: temporalio/temporal-worker-controller
33
tag: "" # Defaults to Chart.appVersion if not specified
44
pullPolicy: IfNotPresent
55

0 commit comments

Comments
 (0)