-
I am trying to install zilla on kubernetes and manage it with ArgoCD. Having issues with how to specify the zilla.yaml file with kustomize. The helm install cant find the zilla.yaml file based on how I have configured it. The issue is how to translate the Here is what I have now:
|
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 13 replies
-
In your helm values.yaml:
|
Beta Was this translation helpful? Give feedback.
-
@vordimous thanks for the reply. It seems there is also an issue with the zilla oci registry? When I do a helm pull:
|
Beta Was this translation helpful? Give feedback.
-
Using this kustomize file with your suggested changes in the values.yaml file:
I get this:
helm is installed and I have used it to install a few apps in argocd. |
Beta Was this translation helpful? Give feedback.
-
@vacquah I think specifying the repo is causing the issue. In our helm install example we use the fully qualified
I don't think the github package registry
Here is what should solve your problem:
|
Beta Was this translation helpful? Give feedback.
-
Adding the answer here for future reference. The problem is The solution is to manually pull the chart version you want and untar it into a local folder:
Now you can remove the
|
Beta Was this translation helpful? Give feedback.
Adding the answer here for future reference.
The problem is
oci://
isn't supported fully yet in Kustomize: kubernetes-sigs/kustomize#5134 (comment)The solution is to manually pull the chart version you want and untar it into a local folder:
Now you can remove the
repo
attribute from your yaml and add thehelm-charts
path tohelmGlobals