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.
48 lines
1.1 KiB
48 lines
1.1 KiB
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
resources:
|
|
- cluster-role-binding.yaml
|
|
- cluster-role.yaml
|
|
- deployment.yaml
|
|
- mutating-webhook-configuration.yaml
|
|
- service-account.yaml
|
|
- service.yaml
|
|
- crd.yaml
|
|
commonLabels:
|
|
app: admission-webhook
|
|
kustomize.component: admission-webhook
|
|
namePrefix: admission-webhook-
|
|
images:
|
|
- name: gcr.io/kubeflow-images-public/admission-webhook
|
|
newName: gcr.io/kubeflow-images-public/admission-webhook
|
|
newTag: vmaster-g6b987df8
|
|
namespace: kubeflow
|
|
configMapGenerator:
|
|
- env: params.env
|
|
name: admission-webhook-parameters
|
|
generatorOptions:
|
|
disableNameSuffixHash: true
|
|
vars:
|
|
- fieldref:
|
|
fieldPath: data.namespace
|
|
name: namespace
|
|
objref:
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
name: admission-webhook-parameters
|
|
- fieldref:
|
|
fieldPath: metadata.name
|
|
name: serviceName
|
|
objref:
|
|
apiVersion: v1
|
|
kind: Service
|
|
name: service
|
|
- fieldref:
|
|
fieldPath: metadata.name
|
|
name: deploymentName
|
|
objref:
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
name: deployment
|
|
configurations:
|
|
- params.yaml
|
|
|