28 lines
609 B
YAML
28 lines
609 B
YAML
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||
|
kind: Kustomization
|
||
|
|
||
|
namespace: vikunja
|
||
|
|
||
|
images:
|
||
|
- name: vikunja-api
|
||
|
newName: docker.io/vikunja/api
|
||
|
newTag: latest
|
||
|
- name: vikunja-ui
|
||
|
newName: docker.io/vikunja/frontend
|
||
|
newTag: latest
|
||
|
|
||
|
commonLabels:
|
||
|
app.kubernetes.io/instance: icb4dc0de
|
||
|
app.kubernetes.io/managed-by: kustomize
|
||
|
|
||
|
resources:
|
||
|
- resources/namespace.yaml
|
||
|
- resources/api/pvc.yaml
|
||
|
- resources/api/deployment.yaml
|
||
|
- resources/api/service.yaml
|
||
|
- resources/ui/deployment.yaml
|
||
|
- resources/ui/service.yaml
|
||
|
- resources/ingress.yaml
|
||
|
|
||
|
generators:
|
||
|
- ./secret-generator.yaml
|