keep docker image as binaries in helm chart

1/23/2019

since I am new to devops I need some clear guidance to make my effort worth.

I just need to packge deployed service in kurbenets cluster using helm. Lets assume docker images are in private registry at the moment. What I am inteted is to run helm chat in differnt kubenate cluster with out keeping referene to previouly descriped private docker registry.

So what I am planning is to to keep docker images it self as binaries in helm chart rather than keeping reference to private docker registry.

Would it ever be possible? Please correct me if I am wrong.

-- Kasun Palihakkara
kubernetes
kubernetes-helm
pod

1 Answer

1/23/2019

You can't store any docker images in the Helm charts. This is out of scope of helm's original design. The question was discussed in the Helm github: https://github.com/helm/helm/issues/2812

-- Artem Timchenko
Source: StackOverflow