d729229cba
Remove MySQL configuration from the Kustomization file, as it is no longer needed for the current application architecture. This change simplifies the resource management and reduces complexity in the deployment.
18 lines
545 B
YAML
18 lines
545 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
resources:
|
|
- postgres.yaml
|
|
- rabbitmq.yaml
|
|
- external-secrets.yaml
|
|
- https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/kind/deploy.yaml
|
|
- https://github.com/jetstack/cert-manager/releases/download/v1.15.3/cert-manager.yaml
|
|
- certificates.yaml
|
|
- secrets-store.yaml
|
|
helmCharts:
|
|
- name: external-secrets
|
|
namespace: external-secrets
|
|
includeCRDs: true
|
|
releaseName: external-secrets
|
|
repo: https://charts.external-secrets.io
|
|
version: 0.17.0
|