sigs.k8s.io/cluster-api/bootstrap/kubeadm@v0.0.0-20191016155141-23a891785b60/config/default/kustomization.yaml (about)

     1  # Adds namespace to all resources.
     2  namespace: cabpk-system
     3  
     4  # Value of this field is prepended to the
     5  # names of all resources, e.g. a deployment named
     6  # "wordpress" becomes "alices-wordpress".
     7  # Note that it should also match with the prefix (text before '-') of the namespace
     8  # field above.
     9  namePrefix: cabpk-
    10  
    11  # Labels to add to all resources and selectors.
    12  #commonLabels:
    13  #  someName: someValue
    14  
    15  bases:
    16  - ../crd
    17  - ../rbac
    18  - ../manager
    19  # [WEBHOOK] To enable webhook, uncomment all the sections with [WEBHOOK] prefix including the one in crd/kustomization.yaml
    20  #- ../webhook
    21  # [CERTMANAGER] To enable cert-manager, uncomment next line. 'WEBHOOK' components are required.
    22  #- ../certmanager
    23  
    24  patchesStrategicMerge:
    25  - manager_image_patch.yaml
    26    # Protect the /metrics endpoint by putting it behind auth.
    27    # Only one of manager_auth_proxy_patch.yaml and
    28    # manager_prometheus_metrics_patch.yaml should be enabled.
    29  - manager_auth_proxy_patch.yaml
    30    # If you want your controller-manager to expose the /metrics
    31    # endpoint w/o any authn/z, uncomment the following line and
    32    # comment manager_auth_proxy_patch.yaml.
    33    # Only one of manager_auth_proxy_patch.yaml and
    34    # manager_prometheus_metrics_patch.yaml should be enabled.
    35  #- manager_prometheus_metrics_patch.yaml
    36  
    37  # [WEBHOOK] To enable webhook, uncomment all the sections with [WEBHOOK] prefix including the one in crd/kustomization.yaml
    38  #- manager_webhook_patch.yaml
    39  
    40  # [CAINJECTION] Uncomment next line to enable the CA injection in the admission webhooks.
    41  # Uncomment 'CAINJECTION' in crd/kustomization.yaml to enable the CA injection in the admission webhooks.
    42  # 'CERTMANAGER' needs to be enabled to use ca injection
    43  #- webhookcainjection_patch.yaml