sigs.k8s.io/cluster-api-provider-azure@v1.14.3/config/capz/kustomization.yaml (about)

     1  namespace: capz-system
     2  
     3  namePrefix: capz-
     4  
     5  # Labels to add to all resources and selectors.
     6  commonLabels:
     7    cluster.x-k8s.io/provider: "infrastructure-azure"
     8  
     9  resources:
    10    - namespace.yaml
    11  
    12  bases:
    13    - ../crd
    14    - ../rbac
    15    - ../manager
    16    - ../webhook
    17    - ../certmanager
    18  
    19  patchesStrategicMerge:
    20    - manager_image_patch.yaml
    21    - manager_pull_policy.yaml
    22    - manager_webhook_patch.yaml
    23    - webhookcainjection_patch.yaml
    24  
    25  vars:
    26    - name: CERTIFICATE_NAMESPACE # namespace of the certificate CR
    27      objref:
    28        kind: Certificate
    29        group: cert-manager.io
    30        version: v1
    31        name: serving-cert # this name should match the one in certificate.yaml
    32      fieldref:
    33        fieldpath: metadata.namespace
    34    - name: CERTIFICATE_NAME
    35      objref:
    36        kind: Certificate
    37        group: cert-manager.io
    38        version: v1
    39        name: serving-cert # this name should match the one in certificate.yaml
    40    - name: SERVICE_NAMESPACE # namespace of the service
    41      objref:
    42        kind: Service
    43        version: v1
    44        name: webhook-service
    45      fieldref:
    46        fieldpath: metadata.namespace
    47    - name: SERVICE_NAME
    48      objref:
    49        kind: Service
    50        version: v1
    51        name: webhook-service
    52  
    53  configurations:
    54    - kustomizeconfig.yaml