Kirill
Kirill

Reputation: 8311

Using self-signed SSL certificate for deployment images

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

Answers (1)

Maciek Sawicki
Maciek Sawicki

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

Related Questions