Skip to content

Commit

Permalink
[incubator/timescale] Fix imagePullSecrets (#1393)
Browse files Browse the repository at this point in the history
* Fix imagePullSecrets

* Update Chart.yaml
  • Loading branch information
rbren authored Dec 15, 2023
1 parent 932bcc7 commit faa5d18
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion incubator/timescale/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apiVersion: v1
name: timescaledb-single
description: 'TimescaleDB HA Deployment.'
appVersion: 0.33.2 # Added to make linter happy
version: 0.33.3
version: 0.33.4
icon: https://cdn.iconscout.com/icon/free/png-256/timescaledb-1958407-1651618.png

# appVersion specifies the version of the software, which can vary wildly,
Expand Down
8 changes: 4 additions & 4 deletions incubator/timescale/templates/statefulset-timescaledb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,16 +101,16 @@ spec:
# We choose shutdown here, especially as during the largest part of the shutdown
# we can still serve clients.
terminationGracePeriodSeconds: 600
{{- with .Values.image.pullSecret }}
imagePullSecrets:
- name: {{ . }}
{{- end }}
containers:
- name: timescaledb
securityContext:
allowPrivilegeEscalation: false
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
{{- with .Values.image.pullSecret }}
imagePullSecrets:
- name: {{ . }}
{{- end }}
lifecycle:
preStop:
exec:
Expand Down

0 comments on commit faa5d18

Please sign in to comment.