How would I be able to pull from a private registry using the percona postgresql helm chart? There is no value for imagepullsecret. I want to pull pgPrimary from a private registry. Thanks
1 Like
Hi
Thank you for your question.
Due to the operator architecture, image pull secret name is propagated via
ccp_image_pull_secret
pgo_image_pull_secret
options. Like this:
kubectl create secret docker-registry <imagePullSecretName> \
--docker-server=<server_dns> \
--docker-username=<registry_username> \
--docker-password=<registry_password>
helm install my-operator percona/pg-operator \
--version 1.2.0 \
--namespace my-namespace \
--create-namespace \
--set ccp_image_pull_secret=<imagePullSecretName> \
--set pgo_image_pull_secret=<imagePullSecretName>
1 Like
hey ivan, how can i do it with yaml file?
i dont find a way to implement imagePullSecrets variable.
thanks