Skip to content

Commit

Permalink
Fix: Tag selector issue with the multiple container flavors
Browse files Browse the repository at this point in the history
  • Loading branch information
clemlesne committed Mar 30, 2023
1 parent 9e4ed23 commit c9370ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/helm/azure-pipelines-agent/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
{{- toYaml .Values.securityContext | nindent 12 }}
{{- end }}
{{- end }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
image: "{{ .Values.image.repository }}-{{ .Values.image.tagSuffix | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
env:
- name: AZP_AGENT_NAME
Expand Down
4 changes: 2 additions & 2 deletions src/helm/azure-pipelines-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
replicaCount: 1

image:
repository: ghcr.io/clemlesne/azure-pipelines-agent:bullseye-main
repository: ghcr.io/clemlesne/azure-pipelines-agent:bullseye
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
tagSuffix: ""

imagePullSecrets: []
nameOverride: ""
Expand Down

0 comments on commit c9370ec

Please sign in to comment.