You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
528 B
27 lines
528 B
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
commonLabels:
|
|
app: mysql
|
|
resources:
|
|
- deployment.yaml
|
|
- service.yaml
|
|
- persistent-volume-claim.yaml
|
|
configMapGenerator:
|
|
- name: pipeline-mysql-parameters
|
|
env: params.env
|
|
generatorOptions:
|
|
disableNameSuffixHash: true
|
|
vars:
|
|
- name: mysqlPvcName
|
|
objref:
|
|
kind: ConfigMap
|
|
name: pipeline-mysql-parameters
|
|
apiVersion: v1
|
|
fieldref:
|
|
fieldpath: data.mysqlPvcName
|
|
images:
|
|
- name: mysql
|
|
newTag: '5.6'
|
|
newName: mysql
|
|
configurations:
|
|
- params.yaml
|
|
|