Argocd to override existing base chart values

Viewed 36

I was trying to deploy an application with helm on argocd , and this is my case . I want to deploy vault using helm and i use hashicorp's vault chart as base chart and overriding the values using sub-chart And the base chart has conditions on creating services, PVC , etc.. The values are override on the argocd still the service exists even the condition is made false by boolean

Chart.yml

apiVersion: v2
name: keycloak
type: application
version: 1.0.0
dependencies:
  - name: keycloak
    version: "9.7.3"
    repository: "https://charts.bitnami.com/bitnami"

Argocd.yml

apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
  name: vault
  namespace: vault
spec:
  project: default
  source:
    chart: vault
    repoURL: https://github.com/myrepo.git
    targetRevision: HEAD
  destination:
    server: "https://kubernetes.default.svc"
    namespace: kubeseal

0 Answers
Related