Skip to content

Commit

Permalink
add image digest
Browse files Browse the repository at this point in the history
+

pull always
  • Loading branch information
Gabriel-Ladzaretti committed Aug 19, 2024
1 parent eb32b66 commit e0c08a8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion helm-charts/mend-renovate-ee/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: mend-renovate-enterprise-edition
version: 2.0.1
version: 2.0.2
appVersion: 8.0.0
description: Mend Renovate Enterprise Edition
home: https://github.com/mend/renovate-ce-ee
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
{{- end }}
containers:
- name: {{ .Chart.Name }}-server
image: "{{ .Values.renovateServer.image.repository }}:{{ .Values.renovateServer.image.tag }}"
image: "{{ .Values.renovateServer.image.repository }}:{{ .Values.renovateServer.image.version }}"
imagePullPolicy: {{ .Values.renovateServer.image.pullPolicy }}
{{- with .Values.renovateServer.containerSecurityContext }}
securityContext: {{- toYaml . | nindent 12 }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ spec:
{{- end }}
containers:
- name: {{ .Chart.Name }}-worker
image: "{{ .Values.renovateWorker.image.repository }}:{{ .Values.renovateWorker.image.tag }}"
image: "{{ .Values.renovateWorker.image.repository }}:{{ .Values.renovateWorker.image.version }}"
imagePullPolicy: {{ .Values.renovateWorker.image.pullPolicy }}
{{- with .Values.renovateWorker.containerSecurityContext }}
securityContext: {{- toYaml . | nindent 12 }}
Expand Down
16 changes: 8 additions & 8 deletions helm-charts/mend-renovate-ee/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ postgresql:
renovateServer:
image:
repository: ghcr.io/mend/renovate-ee-server
tag: 8.0.0
pullPolicy: IfNotPresent
version: 8.0.0@sha256:594365b7080e4d24e25ac26dd05eebd64d33b8b752ead4bb3d8e7bdcb4d2aaed
pullPolicy: Always

# Number of renovate-ee-server (for SQLite only 1 replica is allowed)
replicas: 1
Expand Down Expand Up @@ -221,7 +221,7 @@ renovateServer:
# csi:
# driver: secrets-store.csi.k8s.io
# readOnly: true
# volumeAttributes:
# volumeAttributes:
# secretProviderClass: "some-secret-store"

extraVolumeMounts:
Expand All @@ -238,8 +238,8 @@ renovateServer:
renovateWorker:
image:
repository: ghcr.io/mend/renovate-ee-worker
tag: 8.0.0-full
pullPolicy: IfNotPresent
version: 8.0.0-full@sha256:9eb144e8f29b08a25bcc1a7361accb25ea6fe3b8292ce2cdfc3a152c4a5da1df
pullPolicy: Always

# Optional: Sets the maximum execution duration of a Renovate CLI scan in minutes. Defaults to 60.
mendRnvWorkerExecutionTimeout:
Expand Down Expand Up @@ -282,7 +282,7 @@ renovateWorker:
// Enter self-hosted configuration options here.
// https://docs.renovatebot.com/self-hosted-configuration/
}
# Npmrc file. Will be mounted as a secret
# npmrc: |
# //registry.npmjs.org/:_authToken=xxxxxx
Expand Down Expand Up @@ -363,7 +363,7 @@ renovateWorker:

extraVolumes:
[ ]
# - name: secrets-store-inline
# - name: secrets-store-inline
# csi:
# driver: secrets-store.csi.k8s.io
# readOnly: true
Expand All @@ -372,7 +372,7 @@ renovateWorker:

extraVolumeMounts:
[ ]
# - name: secrets-store-inline
# - name: secrets-store-inline
# mountPath: "/mnt/secrets-store"
# readOnly: true

Expand Down

0 comments on commit e0c08a8

Please sign in to comment.