31 lines
674 B
YAML
31 lines
674 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
# 1. Point to the base manifests
|
|
resources:
|
|
- ../../base
|
|
|
|
# 2. Apply the production-specific changes
|
|
patches:
|
|
- path: deployment.yaml
|
|
target:
|
|
kind: Deployment
|
|
name: taskarr
|
|
|
|
# 4. Change the namespace for this overlay
|
|
namespace: taskarr
|
|
|
|
images:
|
|
- name: election
|
|
newName: reg.milasholsting.dk/taskarr/taskarr
|
|
newTag: sha-c434f4f
|
|
- name: election-migration
|
|
newName: reg.milasholsting.dk/taskarr/taskarr-migrator
|
|
newTag: sha-c434f4f
|
|
- name: main
|
|
newName: reg.milasholsting.dk/taskarr/taskarr
|
|
newTag: latest
|
|
- name: migrator
|
|
newName: reg.milasholsting.dk/taskarr/migrator
|
|
newTag: latest
|