Skip to content

Commit

Permalink
chore(seeding): change to imagePullPolicy IfNotPresent
Browse files Browse the repository at this point in the history
  • Loading branch information
evegufy committed Mar 5, 2024
1 parent 1a8d224 commit 3f3a4ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/centralidp/templates/job-seeding.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ spec:
- ALL
runAsNonRoot: true
image: "{{ .Values.seeding.image }}"
imagePullPolicy: "Always"
imagePullPolicy: "{{ .Values.seeding.imagePullPolicy }}"
env:
- name: "KEYCLOAK__CENTRAL__CONNECTIONSTRING"
value: "http://{{ template "centralidp.fullname" . }}"
Expand Down
3 changes: 2 additions & 1 deletion charts/centralidp/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ seeding:
# for configuration possibly not covered by the seeding job
enabled: false
image: "tractusx/portal-iam-seeding:v2.1.0-iam-RC1"
imagePullPolicy: "IfNotPresent"
portContainer: 8080
authRealm: "master"
useAuthTrail: "true"
Expand Down Expand Up @@ -177,7 +178,7 @@ seeding:
initContainers:
- name: init-cx-central
image: tractusx/portal-iam:v2.1.0-RC1
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
command:
- sh
args:
Expand Down

0 comments on commit 3f3a4ff

Please sign in to comment.