Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Change image pull policy to IfNotPresent #1367

Merged
merged 3 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion applications/job/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ allowConcurrency: true

image:
repository: public.ecr.aws/o1j4x7p4/hello-porter-job
pullPolicy: Always
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: latest
# A single imagePullSecret that will be injected into the deployment; only use in extreme cases, else it must be left blank.
Expand Down
2 changes: 1 addition & 1 deletion applications/web/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ spec:
apiVersion: v1
fieldPath: status.hostIP
image: ghcr.io/porter-dev/downward-api-init:latest
imagePullPolicy: Always
imagePullPolicy: {{ .Values.image.pullPolicy }}
containers:
- name: {{ .Chart.Name }}
securityContext:
Expand Down
2 changes: 1 addition & 1 deletion applications/web/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ terminationGracePeriodSeconds: 30

image:
repository: public.ecr.aws/o1j4x7p4/hello-porter
pullPolicy: Always
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: latest
# A single imagePullSecret that will be injected into the deployment; only use in extreme cases, else it must be left blank.
Expand Down
2 changes: 1 addition & 1 deletion applications/worker/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ spec:
apiVersion: v1
fieldPath: status.hostIP
image: ghcr.io/porter-dev/downward-api-init:latest
imagePullPolicy: Always
imagePullPolicy: {{ .Values.image.pullPolicy }}
containers:
- name: {{ .Chart.Name }}
securityContext:
Expand Down
2 changes: 1 addition & 1 deletion applications/worker/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ terminationGracePeriodSeconds: 30

image:
repository: public.ecr.aws/o1j4x7p4/hello-porter
pullPolicy: Always
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: latest
# A single imagePullSecret that will be injected into the deployment; only use in extreme cases, else it must be left blank.
Expand Down
Loading