sigs.k8s.io/cluster-api-provider-aws@v1.5.5/config/default/kustomization.yaml (about)

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