Skip to content

Commit

Permalink
feat: image pull policy set to IfNotPresent (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
omerlh authored Dec 24, 2024
1 parent 4ba71e0 commit 502459f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/dafka-producer/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v1
description: A Helm Chart for Dafka Producer
name: dafka-producer
version: 7.3.1
version: 7.3.2
2 changes: 1 addition & 1 deletion charts/dafka-producer/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
containers:
- name: {{ .Release.Name }}-{{ .Values.name }}
image: {{ .Values.image.name }}:{{ .Values.image.tag }}
imagePullPolicy: Always
imagePullPolicy: {{ .Values.image.imagePullPolicy | default IfNotPresent }}
{{ if .Values.auth.enabled }}
{{ if not .Values.auth.saslPassword }}
volumeMounts:
Expand Down

0 comments on commit 502459f

Please sign in to comment.