
The current PS adds manifests files to update CAPI components to 0.4.2 version. Relates-To: #518 Change-Id: Id6019ca0867a776902595308bfdbd554b2ffe54e
58 lines
1.3 KiB
YAML
58 lines
1.3 KiB
YAML
# Adds namespace to all resources.
|
|
namespace: capi-kubeadm-bootstrap-system
|
|
|
|
namePrefix: capi-kubeadm-bootstrap-
|
|
|
|
commonLabels:
|
|
cluster.x-k8s.io/provider: "bootstrap-kubeadm"
|
|
|
|
resources:
|
|
- namespace.yaml
|
|
|
|
bases:
|
|
- ../crd
|
|
- ../rbac
|
|
- ../manager
|
|
- ../webhook
|
|
- ../certmanager
|
|
|
|
patchesStrategicMerge:
|
|
# Provide customizable hook for make targets.
|
|
- manager_image_patch.yaml
|
|
- manager_pull_policy.yaml
|
|
# Enable webhook.
|
|
- manager_webhook_patch.yaml
|
|
# Inject certificate in the webhook definition.
|
|
- webhookcainjection_patch.yaml
|
|
|
|
vars:
|
|
- name: CERTIFICATE_NAMESPACE # namespace of the certificate CR
|
|
objref:
|
|
kind: Certificate
|
|
group: cert-manager.io
|
|
version: v1
|
|
name: serving-cert # this name should match the one in certificate.yaml
|
|
fieldref:
|
|
fieldpath: metadata.namespace
|
|
- name: CERTIFICATE_NAME
|
|
objref:
|
|
kind: Certificate
|
|
group: cert-manager.io
|
|
version: v1
|
|
name: serving-cert # this name should match the one in certificate.yaml
|
|
- name: SERVICE_NAMESPACE # namespace of the service
|
|
objref:
|
|
kind: Service
|
|
version: v1
|
|
name: webhook-service
|
|
fieldref:
|
|
fieldpath: metadata.namespace
|
|
- name: SERVICE_NAME
|
|
objref:
|
|
kind: Service
|
|
version: v1
|
|
name: webhook-service
|
|
|
|
configurations:
|
|
- kustomizeconfig.yaml
|