Skip to content
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 charts/ext-postgres-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ description: |

type: application

version: 2.0.0
version: 2.0.1
appVersion: "2.0.0"
2 changes: 1 addition & 1 deletion charts/ext-postgres-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ helm upgrade --install -n operators ext-postgres-operator ext-postgres-operator/

## Compatibility

**NOTE:** Helm chart version `2.0.0` is only compatible with the Postgres Operator version `2.0.0`. Ensure that you are using the correct versions to avoid compatibility issues.
**NOTE:** Helm chart version `>= 2.0.0` is only compatible with the Postgres Operator version `2.0.0`. Ensure that you are using the correct versions to avoid compatibility issues.
2 changes: 2 additions & 0 deletions charts/ext-postgres-operator/templates/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ spec:
serviceAccountName: {{ include "chart.serviceAccountName" . }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
imagePullSecrets:
{{- toYaml .Values.image.pullSecrets | nindent 8 }}
containers:
- name: {{ .Chart.Name }}
securityContext:
Expand Down
4 changes: 4 additions & 0 deletions charts/ext-postgres-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ revisionHistoryLimit: 10
image:
repository: ghcr.io/movetokube/postgres-operator
pullPolicy: IfNotPresent
pullSecrets: []
# e.g. for pullSecrets:
# - name: my-secret

# Overrides the image tag whose default is the chart appVersion.
tag: ""

Expand Down