Is there any way or good practice to use helm and kustomize at the same time?
When I need use a production values.yaml or staging values.yaml I thinks to use kustomize for templating this values to argocd
I got this structure of repo:
├── Chart.yaml
├── values.yaml
├── kustomize/
│ ├── base/
│ │ ├── .....yaml
│ │ └── kustomization.yaml
│ ├── overlays/
│ │ ├── production/
│ │ │ ├── values.yaml
│ │ │ └── kustomization.yaml
│ │ ├── staging/
│ │ │ ├── values.yaml
│ │ │ └── kustomization.yaml
│ │ └── kustomization.yaml
│ └── kustomization.yaml
└── templates/
├── NOTES.txt
├── deployment.yaml
├── service.yaml
└── _helpers.tpl
is this possible?