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.
25 lines
601 B
25 lines
601 B
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: deployment
|
|
spec:
|
|
template:
|
|
metadata:
|
|
labels:
|
|
sidecar.istio.io/inject: "false"
|
|
spec:
|
|
containers:
|
|
- image: ghcr.io/kubeflow/kubeflow/poddefaults-webhook
|
|
name: admission-webhook
|
|
volumeMounts:
|
|
- mountPath: /etc/webhook/certs
|
|
name: webhook-cert
|
|
readOnly: true
|
|
ports:
|
|
- name: https-webhook
|
|
containerPort: 4443
|
|
volumes:
|
|
- name: webhook-cert
|
|
secret:
|
|
secretName: webhook-certs
|
|
serviceAccountName: service-account
|
|
|