diff --git a/helm/temporal-worker-controller/templates/manager.yaml b/helm/temporal-worker-controller/templates/manager.yaml index c8fc3bd1..d2cee5b0 100644 --- a/helm/temporal-worker-controller/templates/manager.yaml +++ b/helm/temporal-worker-controller/templates/manager.yaml @@ -47,10 +47,8 @@ spec: {{- end }} containers: - name: manager - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default (printf "v%s" .Chart.AppVersion)}}" imagePullPolicy: {{ .Values.image.pullPolicy }} - command: - - /manager env: - name: CONTROLLER_IDENTITY value: "{{ .Release.Name }}/{{ .Release.Namespace }}" diff --git a/helm/temporal-worker-controller/values.yaml b/helm/temporal-worker-controller/values.yaml index 6b1810aa..0d56197c 100644 --- a/helm/temporal-worker-controller/values.yaml +++ b/helm/temporal-worker-controller/values.yaml @@ -1,5 +1,5 @@ image: - repository: temporal-worker-controller + repository: temporalio/temporal-worker-controller tag: "" # Defaults to Chart.appVersion if not specified pullPolicy: IfNotPresent