Skip to content

Commit

Permalink
Fix image reference as well
Browse files Browse the repository at this point in the history
  • Loading branch information
janboll committed Feb 24, 2025
1 parent e4d81dd commit 70793c9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cluster-service/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ deploy:
--set serviceKeyvaultName=${SERVICE_KV} \
--set imageRegistry=${ACR_NAME}.azurecr.io \
--set imageRepository=${IMAGE_REPO} \
--set imageTag=${IMAGE_DIGEST} \
--set imageDigest=${IMAGE_DIGEST} \
--set azureFirstPartyApplicationClientId=${AZURE_FIRST_PARTY_APPLICATION_CLIENT_ID} \
--set fpaCertName=${FPA_CERT_NAME} \
--set ocpAcrResourceId=$${OCP_ACR_RESOURCE_ID} \
Expand Down
2 changes: 1 addition & 1 deletion cluster-service/deploy/helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ spec:
secretProviderClass: cs-keyvault
initContainers:
- name: init
image: '{{ .Values.imageRegistry }}/{{ .Values.imageRepository }}:{{ .Values.imageTag }}'
image: '{{ .Values.imageRegistry }}/{{ .Values.imageRepository }}@{{ .Values.imageDigest }}'
imagePullPolicy: IfNotPresent
volumeMounts:
- name: rds
Expand Down
4 changes: 2 additions & 2 deletions cluster-service/deploy/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ imageRegistry: ""
# Image Repository
imageRepository: ""

# Image Tag
imageTag: ""
# Image Digest
imageDigest: ""

# log verbosity level
logLevel: "debug"
Expand Down

0 comments on commit 70793c9

Please sign in to comment.