Skip to content

Commit

Permalink
operator edp-keycloak-operator (1.19.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
SergK authored Nov 15, 2023
1 parent e315be1 commit d3e7907
Show file tree
Hide file tree
Showing 18 changed files with 3,927 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
apiVersion: v1
data:
controller_manager_config.yaml: "apiVersion: controller-runtime.sigs.k8s.io/v1alpha1\nkind:
ControllerManagerConfig\nhealth:\n healthProbeBindAddress: :8081\nmetrics:\n
\ bindAddress: 127.0.0.1:8080\nwebhook:\n port: 9443\nleaderElection:\n leaderElect:
true\n resourceName: edp-keycloak-operator-lock\n# leaderElectionReleaseOnCancel
defines if the leader should step down volume \n# when the Manager ends. This
requires the binary to immediately end when the\n# Manager is stopped, otherwise,
this setting is unsafe. Setting this significantly\n# speeds up voluntary leader
transitions as the new leader don't have to wait\n# LeaseDuration time first.\n#
\ In the default scaffold provided, the program ends immediately after \n# the
manager stops, so would be fine to enable this option. However, \n# if you are
doing or is intended to do any operation such as perform cleanups \n# after
the manager stops then its usage might be unsafe.\n# leaderElectionReleaseOnCancel:
true\n"
kind: ConfigMap
metadata:
name: edp-keycloak-operator-manager-config
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
creationTimestamp: null
name: edp-keycloak-operator-manager-role
rules:
- apiGroups:
- v1.edp.epam.com
resources:
- clusterkeycloakrealms
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- v1.edp.epam.com
resources:
- clusterkeycloakrealms/finalizers
verbs:
- update
- apiGroups:
- v1.edp.epam.com
resources:
- clusterkeycloakrealms/status
verbs:
- get
- patch
- update
- apiGroups:
- v1.edp.epam.com
resources:
- clusterkeycloaks
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- v1.edp.epam.com
resources:
- clusterkeycloaks/finalizers
verbs:
- update
- apiGroups:
- v1.edp.epam.com
resources:
- clusterkeycloaks/status
verbs:
- get
- patch
- update
Loading

0 comments on commit d3e7907

Please sign in to comment.