Files
local-k8s/kind/kustomization.yaml
T
argoyle 1d0148267a feat: add local proxy configuration for development
Adds local proxy configuration to facilitate traffic routing 
from the KinD cluster to the host machine for local development. 
Includes definitions for frontend and API services, allowing 
for easier access during development. This change enhances the 
development workflow and simplifies testing.
2025-12-10 07:47:41 +01:00

33 lines
854 B
YAML

apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- postgres.yaml
- rabbitmq.yaml
- namespaces.yaml
- certificates.yaml
- secrets-store.yaml
- local-proxy.yaml
helmCharts:
- name: external-secrets
namespace: external-secrets
includeCRDs: true
releaseName: external-secrets
repo: https://charts.external-secrets.io
version: 1.1.1
- name: cert-manager
namespace: cert-manager
includeCRDs: true
releaseName: cert-manager
repo: https://charts.jetstack.io
version: v1.19.2
valuesInline:
crds:
enabled: true
- name: ingress-nginx
namespace: ingress-nginx
includeCRDs: true
releaseName: ingress-nginx
repo: https://kubernetes.github.io/ingress-nginx
version: 4.14.1
valuesFile: https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/hack/manifest-templates/provider/kind/values.yaml