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