Richi Yonkeu:
Hi everyone, I need your help.
I have been using argoCD for a few years now to deploy my applications which are delivered to me in the form of helm charts. However, the delivery often contains errors. I would not add my configurations directly in the delivery. But instead I decided to use Kustomize. So I set about configuring kustomization.yaml datei. Here’s what it looks like.
apiVersion: <http://kustomize.config.k8s.io/v1beta1|kustomize.config.k8s.io/v1beta1>
kind: Kustomization
resources:
- base/templates/nginx.yaml
- base/templates/strimzi.yaml
helmCharts:
- name: nginx
version: 2.0.11
valuesFile: values.yaml
AdditionalValuesFiles:
- values-test.yaml
helmGlobals:
chartHome: ../charts/nginx
Here are the errors I get.
error: json: unknown field "AdditionalValuesFiles"
error: no repo specified for pull, no chart found at ''
My Charts is local but I don’t know why it absolutely wants to download another chart from a remote repo. Thank you for Contributions!