Skip to content

Commit

Permalink
Revert "Set default container.imagePullPolicy to IfNotPresent (#1467
Browse files Browse the repository at this point in the history
)" (#1470)

### Description

This reverts commit fff3240.

### Context

The previous change did not fix the deployments, causing the pods to be
evicted continuously.

### Testing

- `./gradlew test`

### Documentation

N/A

### Known limitations

N/A
  • Loading branch information
philipliu authored Aug 26, 2024
1 parent 0834773 commit 8717ecf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion helm-charts/reference-server/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
- name: reference
image: {{ .Values.container.image }}
args: [ "--kotlin-reference-server" ]
imagePullPolicy: {{ .Values.container.imagePullPolicy | default "IfNotPresent" }}
imagePullPolicy: {{ .Values.container.imagePullPolicy }}
ports:
- name: http
containerPort: {{ .Values.services.ref.containerPort | default 8091 }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
- name: event-processor
image: {{ .Values.container.image }}
args: [ "--event-processor" ]
imagePullPolicy: {{ .Values.container.imagePullPolicy | default "IfNotPresent" }}
imagePullPolicy: {{ .Values.container.imagePullPolicy }}
ports:
- name: http
containerPort: {{ .Values.services.sep.containerPort | default 8088 }}
Expand Down
2 changes: 1 addition & 1 deletion helm-charts/sep-service/templates/observer-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
- name: stellar-observer
image: {{ .Values.container.image }}
args: [ "--stellar-observer" ]
imagePullPolicy: {{ .Values.container.imagePullPolicy | default "IfNotPresent" }}
imagePullPolicy: {{ .Values.container.imagePullPolicy }}
ports:
- name: http
containerPort: {{ .Values.services.observer.containerPort | default 8083 }}
Expand Down
2 changes: 1 addition & 1 deletion helm-charts/sep-service/templates/platform-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
- name: platform
image: {{ .Values.container.image }}
args: [ "--platform-server" ]
imagePullPolicy: {{ .Values.container.imagePullPolicy | default "IfNotPresent" }}
imagePullPolicy: {{ .Values.container.imagePullPolicy}}
ports:
- name: http
containerPort: {{ .Values.services.platform.containerPort | default 8085 }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
- name: sep-server
image: {{ .Values.container.image }}
args: [ "--sep-server" ]
imagePullPolicy: {{ .Values.container.imagePullPolicy | default "IfNotPresent" }}
imagePullPolicy: {{ .Values.container.imagePullPolicy }}
ports:
- name: http
containerPort: {{ .Values.services.sep.containerPort | default 8080 }}
Expand Down

0 comments on commit 8717ecf

Please sign in to comment.