sigs.k8s.io/cluster-api-provider-azure@v1.17.0/hack/observability/cluster-api-visualizer/chart/templates/clusterrole.yaml (about)

     1  apiVersion: rbac.authorization.k8s.io/v1
     2  kind: ClusterRole
     3  metadata:
     4    name: capi-visualizer
     5  rules:
     6  - apiGroups:
     7    - ''
     8    resources:
     9    - '*'
    10    verbs:
    11    - 'list'
    12    - 'get'
    13    - 'watch'
    14  - apiGroups:
    15    - 'apiextensions.k8s.io'
    16    resources:
    17    - 'customresourcedefinitions'
    18    verbs:
    19    - 'list'
    20    - 'get'
    21    - 'watch'
    22  - apiGroups:
    23    - 'cluster.x-k8s.io'
    24    - 'addons.cluster.x-k8s.io'
    25    - 'bootstrap.cluster.x-k8s.io'
    26    - 'controlplane.cluster.x-k8s.io'
    27    - 'ipam.cluster.x-k8s.io'
    28    - 'infrastructure.cluster.x-k8s.io'
    29    - 'runtime.cluster.x-k8s.io'
    30    resources:
    31    - '*'
    32    verbs:
    33    - '*'
    34  # Note: this is a fallback to allow the visualizer to work with user-specific CRDs.
    35  - apiGroups:
    36    - '*'
    37    resources:
    38    - '*'
    39    verbs:
    40    - 'list'
    41    - 'get'
    42    - 'watch'
    43  - nonResourceURLs:
    44    - '*'
    45    verbs:
    46    - '*'