-
I built my own image as per below for execProviderConfig and helm plugins |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hey @rwong2888, you will need to either adapt the installation manifests or the running workload in your cluster. For custom tooling, the container used by the A very easy way is to do this is to use Kustomize, with a
This will render new installation manifests that use your custom image (although, for all of the workloads not just the |
Beta Was this translation helpful? Give feedback.
Hey @rwong2888, you will need to either adapt the installation manifests or the running workload in your cluster. For custom tooling, the container used by the
argocd-repo-server
deployment is the one that needs to be changed to use your custom image, e.g. here.A very easy way is to do this is to use Kustomize, with a
kustomization.yaml
such as:This will render new installation manifests that use your custom image (although, for all of the workloads not jus…