Files
kubernetes/postgresql/kustomization.yaml
Dustin C. Hatch 28e8ac58db postgresql: Set instance label for Argo CD
Argo CD wants every resource managed by an application to have that
application's name as the value of the `app.kubernetes.io/instance`
label.
2023-10-14 21:32:29 -05:00

27 lines
494 B
YAML

apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
labels:
- pairs:
app.kubernetes.io/instance: postgresql
namespace: postgresql
resources:
- namespace.yaml
- secrets.yaml
- operatorconfiguration.crd.yaml
- postgresteam.crd.yaml
- postgresql-operator-configuration.yaml
- operator-service-account-rbac.yaml
- postgres-operator.yaml
- api-service.yaml
- default-cluster.yaml
configMapGenerator:
- name: pod-env
envs:
- pod.env
options:
disableNameSuffixHash: true