37 lines
894 B
YAML
37 lines
894 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
# Note: namespaces are defined in base; workloads go to dexorder-system
|
|
namespace: dexorder-system
|
|
|
|
# Base resources (includes security policies)
|
|
resources:
|
|
- ../base
|
|
- infrastructure.yaml
|
|
|
|
# Dev-specific patches
|
|
patches:
|
|
# Reduced resource quotas for minikube
|
|
- path: agent-quotas-patch.yaml
|
|
# Allow local registry images
|
|
- path: admission-policy-patch.yaml
|
|
|
|
# ConfigMaps for service configs
|
|
configMapGenerator:
|
|
- name: relay-config
|
|
files:
|
|
- config.yaml=configs/relay-config.yaml
|
|
- name: ingestor-config
|
|
files:
|
|
- config.yaml=configs/ingestor-config.yaml
|
|
- name: flink-config
|
|
files:
|
|
- config.yaml=configs/flink-config.yaml
|
|
|
|
# Secrets (managed via kubectl, not committed)
|
|
# These are created by bin/secret-update
|
|
secretGenerator: []
|
|
|
|
generatorOptions:
|
|
disableNameSuffixHash: true
|