31 lines
563 B
YAML
31 lines
563 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: math-tables
|
|
|
|
resources:
|
|
- ../../base
|
|
- namespace.yaml
|
|
|
|
# Production-specific patches
|
|
patchesStrategicMerge:
|
|
- deployment-patch.yaml
|
|
- security-patch.yaml
|
|
- ingress-patch.yaml
|
|
|
|
# Production-specific configurations
|
|
images:
|
|
- name: math-exercises
|
|
newName: harbor.cl1.parano.ch/library/math-exercice
|
|
newTag: 1.0.2
|
|
|
|
# Production-specific labels
|
|
commonLabels:
|
|
environment: production
|
|
security-level: high
|
|
|
|
secretGenerator:
|
|
- name: s3-credentials
|
|
envs:
|
|
- s3-credentials.env
|