21 lines
411 B
YAML
21 lines
411 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
- ../../base
|
|
|
|
# Patches für Produktion
|
|
patches:
|
|
- target:
|
|
kind: Deployment
|
|
name: whoami
|
|
patch: |-
|
|
- op: replace
|
|
path: /spec/replicas
|
|
value: 2
|
|
|
|
# Hier ändern wir das Image für Produktion (Das ist die Zeile, die wir beim Release anpassen!)
|
|
images:
|
|
- name: traefik/whoami
|
|
newTag: v1.8.0
|