Reputation: 8311
I have private Docker registry which works over https with self-signed SSL certificate. I've installed this certificate on local machine and it's working fine (can push and pull).
Is it possible to configure Kubernetes to use this certificate for deployments (pull images from private registry)?
Upvotes: 0
Views: 120
Reputation: 6835
Kubernetes it self doesn't support this. you have to deploy certificate to all worker nodes. You can simplify the process using DaemonSet and hostPath volumes.
Upvotes: 2