34fd3e0bfc
* add documentation for openstack provider (capo) * add manifests for openstack provider (capo) * add cluster templates for control plane and workers * add site definition to use openstack provider (capo) with control plane and workers Change-Id: I7158aa87f2ef044d0acca448e3b1c19f58416e22
17 lines
694 B
YAML
17 lines
694 B
YAML
# This patch add annotation to admission webhook config and
|
|
# the variables $(CERTIFICATE_NAMESPACE) and $(CERTIFICATE_NAME) will be substituted by kustomize.
|
|
# uncomment the following lines to enable mutating webhook
|
|
#apiVersion: admissionregistration.k8s.io/v1beta1
|
|
#kind: MutatingWebhookConfiguration
|
|
#metadata:
|
|
# name: mutating-webhook-configuration
|
|
# annotations:
|
|
# cert-manager.k8s.io/inject-ca-from: $(CERTIFICATE_NAMESPACE)/$(CERTIFICATE_NAME)
|
|
---
|
|
apiVersion: admissionregistration.k8s.io/v1beta1
|
|
kind: ValidatingWebhookConfiguration
|
|
metadata:
|
|
name: validating-webhook-configuration
|
|
annotations:
|
|
cert-manager.io/inject-ca-from: $(CERTIFICATE_NAMESPACE)/$(CERTIFICATE_NAME)
|