Using self-signed SSL certificate for deployment images

5/7/2018

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)?

-- Kirill
docker
kubernetes
ssl

1 Answer

5/7/2018

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.

-- Maciek Sawicki
Source: StackOverflow