all. I'm using Argo CD v1.6.1 and am trying to deploy an application using Kustomize. Argo CD doesn't seem to recognize my Kustomize manifest files. Looking at the Kustomize documentation on the Argo CD page, it looks like it only supports the following Kustomize options:
- namePrefix is a prefix appended to resources for Kustomize apps
- nameSuffix is a suffix appended to resources for Kustomize apps
- images is a list of Kustomize image overrides
- commonLabels is a string map of an additional labels
Are these the only things I'm going to be able to manipulate in my base manifest files using Kustomize? I was hoping I'd be able to use the patchesStrategicMerge option with my overlay files I've got which allow me to manipulate anything in the base.yaml files. It doesn't seem to recognize kind: Kustomization and apiVersion: kustomize.config.k8s.io/v1beta1
Thank you.