-
Hi all I need to pull a custom initImage and a custom broker image from my own repository that needs credentials. Is it possible to specify a secret to define docker registry access credentials? Do you have any example to follow? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
The operator doesn't provide a way to define the
For further details see https://kubernetes.io/docs/concepts/containers/images/#using-a-private-registry If those options doesn't work for you, feel to create a new issue, community contributions are always welcome :-) |
Beta Was this translation helpful? Give feedback.
-
Hi, I think I have implemented the feature for |
Beta Was this translation helpful? Give feedback.
The operator doesn't provide a way to define the
imagePullSecrets
field. To use a private registry you have the following options:all pods can read any configured private registries
requires node configuration by cluster administrator
all pods can use any images cached on a node
requires root access to all nodes to set up
For further details see https://kubernetes.io/docs/concepts/containers/images/#using-a-private-registry
If those options doesn't work for you, feel to create a new issue, community contributions are always welcome :-)