I have a Helm chart that uses Nginx chart as a dependency. Is it possible to specify different repo for pulling the image?
My dependencies:
dependencies:
- name: nginx-ingress
version: "3.15.2"
repository: "https://kubernetes.github.io/ingress-nginx"
condition: master.ingress.create_controller
tags:
- ingressController
What I want to achieve is to make k8s pull image from private Docker registry instead of Docker Hub. I've checked Helm docs, but couldn't find a corresponding parameter. I understand that I can download the chart and change the value inside, but this is my plan B.