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.
32 lines
772 B
32 lines
772 B
apiVersion: admissionregistration.k8s.io/v1beta1
|
|
kind: MutatingWebhookConfiguration
|
|
metadata:
|
|
name: cert-manager-webhook
|
|
labels:
|
|
app: webhook
|
|
annotations:
|
|
cert-manager.io/inject-apiserver-ca: "true"
|
|
webhooks:
|
|
- name: webhook.cert-manager.io
|
|
rules:
|
|
- apiGroups:
|
|
- "cert-manager.io"
|
|
apiVersions:
|
|
- v1alpha2
|
|
operations:
|
|
- CREATE
|
|
- UPDATE
|
|
resources:
|
|
- certificates
|
|
- issuers
|
|
- clusterissuers
|
|
- orders
|
|
- challenges
|
|
- certificaterequests
|
|
failurePolicy: Fail
|
|
clientConfig:
|
|
service:
|
|
name: kubernetes
|
|
namespace: default
|
|
path: /apis/webhook.cert-manager.io/v1beta1/mutations
|
|
caBundle: ""
|
|
|