36 lines
873 B
YAML
36 lines
873 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
- ptp-chat-backend.yaml
|
|
- ptp-chat-frontend.yaml
|
|
- ptp-chat-database.yaml
|
|
- ptp-chat-hpa.yaml
|
|
- ptp-chat-istio.yaml
|
|
- ptp-chat-sealed-secret.yaml
|
|
- ptp-chat-pull-sealed-secret.yaml
|
|
|
|
patches:
|
|
- patch: |-
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: ptp-chat-secret
|
|
annotations:
|
|
argocd.argoproj.io/compare-options: IgnoreExtraneous
|
|
sealedsecrets.bitnami.com/managed: "true"
|
|
- patch: |-
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: pull-secret
|
|
annotations:
|
|
argocd.argoproj.io/compare-options: IgnoreExtraneous
|
|
sealedsecrets.bitnami.com/managed: "true"
|
|
|
|
secretGenerator:
|
|
- name: ptp-chat-secret
|
|
type: Opaque
|
|
- name: pull-secret
|
|
type: kubernetes.io/dockerconfigjson
|