Need help on using private docker registry #10023
-
Hello, Rather than using publicly hosted images, I would like to use private docker repository to install Linkerd on my cluster.
Output:
Importing these images to my docker registry is no big deal, but how do I pass the path of my private docker registry's image to the
Any help is appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
For $ linkerd install --registry foobar.com | grep image: | sed -e 's/^ *//' | sort | uniq
image:
image: foobar.com/controller:stable-2.12.3
image: foobar.com/policy-controller:stable-2.12.3
image: foobar.com/proxy-init:v2.0.0
image: foobar.com/proxy:stable-2.12.3 That flag is not available for $ linkerd viz install --set defaultRegistry=foobar.com | grep image: | sed -e 's/^ *//' | sort | uniq
image: foobar.com/metrics-api:stable-2.12.3
image: foobar.com/tap:stable-2.12.3
image: foobar.com/web:stable-2.12.3
image: prom/prometheus:v2.30.3 |
Beta Was this translation helpful? Give feedback.
For
linkerd install
, you can use the--registry
flag:That flag is not available for
linkerd viz install
directly, but you can set the associatedvalues.yaml
entry: