helm-charts icon indicating copy to clipboard operation
helm-charts copied to clipboard

charts/timescaledb-single: add imagePullSecrets

Open ayeks opened this issue 2 years ago • 1 comments

Using a private repository was not possible before, so I added the imagePullSecrets to the StatefulSet.

You can now define an existing secret from the same namespace. Example:

image:
  repository: docker.yourcompany.com/timescale/timescaledb-ha
  tag: pg13.4-ts2.4.2-p0
  pullPolicy: IfNotPresent

imagePullSecrets:
- name: registry-credentials

Checkout https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ for detailed information.

ayeks avatar Mar 22 '22 09:03 ayeks

Any chance this will make it in the next release? Currently I have to run a local version of this chart only because of this change.

c-p-b avatar Mar 29 '22 22:03 c-p-b