kustomization.yaml 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. resources:
  2. # All RBAC will be applied under this service account in
  3. # the deployment namespace. You may comment out this resource
  4. # if your manager will use a service account that exists at
  5. # runtime. Be sure to update RoleBinding and ClusterRoleBinding
  6. # subjects if changing service account names.
  7. - service_account.yaml
  8. - role.yaml
  9. - role_binding.yaml
  10. - leader_election_role.yaml
  11. - leader_election_role_binding.yaml
  12. # The following RBAC configurations are used to protect
  13. # the metrics endpoint with authn/authz. These configurations
  14. # ensure that only authorized users and service accounts
  15. # can access the metrics endpoint. Comment the following
  16. # permissions if you want to disable this protection.
  17. # More info: https://book.kubebuilder.io/reference/metrics.html
  18. - metrics_auth_role.yaml
  19. - metrics_auth_role_binding.yaml
  20. - metrics_reader_role.yaml
  21. # For each CRD, "Admin", "Editor" and "Viewer" roles are scaffolded by
  22. # default, aiding admins in cluster management. Those roles are
  23. # not used by the loco-operator itself. You can comment the following lines
  24. # if you do not want those helpers be installed with your Project.
  25. - externalmodel_admin_role.yaml
  26. - externalmodel_editor_role.yaml
  27. - externalmodel_viewer_role.yaml
  28. - stack_admin_role.yaml
  29. - stack_editor_role.yaml
  30. - stack_viewer_role.yaml
  31. - component_admin_role.yaml
  32. - component_editor_role.yaml
  33. - component_viewer_role.yaml