33 lines
669 B
YAML
33 lines
669 B
YAML
apiVersion: kustomize.config.k8s.io/v1alpha1
|
|
kind: Component
|
|
|
|
generatorOptions:
|
|
disableNameSuffixHash: true
|
|
|
|
configurations:
|
|
- ./configurations/cnpg-cluster.yaml
|
|
|
|
resources:
|
|
- ./resources/myapplication-cnpg-cluster.yaml
|
|
|
|
secretgenerator:
|
|
- name: myapplication-postgres-admin
|
|
type: secret
|
|
literals:
|
|
- username=postgres
|
|
- password=notsosecret
|
|
- name: myapplication-postgres-user
|
|
type: Secret
|
|
literals:
|
|
- username=myapplication
|
|
- password=NotSoSecretButThisIsBad
|
|
|
|
vars:
|
|
- name: myapplication_DATABASE_SERVICE_NAME
|
|
objref:
|
|
name: myapplication-postgres
|
|
kind: Cluster
|
|
apiVersion: postgresql.cnpg.io/v1
|
|
fieldref:
|
|
fieldpath: metadata.name
|