35 lines
635 B
YAML
35 lines
635 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: voyger-assign
|
|
|
|
resources:
|
|
- ../../base
|
|
- secretHarbor.yaml
|
|
|
|
labels:
|
|
- pairs:
|
|
voyger-assign: signup
|
|
|
|
patches:
|
|
# common
|
|
- path: patch_serviceAccounts.yaml
|
|
target:
|
|
kind: ServiceAccount
|
|
name: voyger-assign
|
|
# signup
|
|
- path: signUp/patch_deployment.yaml
|
|
target:
|
|
kind: Deployment
|
|
name: signup
|
|
# getusers
|
|
- path: getUsers/patch_deployment.yaml
|
|
target:
|
|
kind: Deployment
|
|
name: getusers
|
|
|
|
images:
|
|
- name: harbor.icurfer.com/voyger-assign/signup
|
|
newTag: "0.1_r1"
|
|
- name: harbor.icurfer.com/voyger-assign/getusers
|
|
newTag: "0.1" |