A Kubernetes operator that bridges Hardware Security Module (HSM) data storage with Kubernetes Secrets, providing true secret portability th
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix rbac

+6 -1
+3
cmd/discovery/main.go
··· 14 14 limitations under the License. 15 15 */ 16 16 17 + // +kubebuilder:rbac:groups="",resources=pods,verbs=get;list;watch;patch 18 + // +kubebuilder:rbac:groups=hsm.j5t.io,resources=hsmdevices,verbs=get;list;watch 19 + 17 20 package main 18 21 19 22 import (
+2 -1
config/rbac/role.yaml
··· 2 2 apiVersion: rbac.authorization.k8s.io/v1 3 3 kind: ClusterRole 4 4 metadata: 5 - name: manager-role 5 + name: hsm-secrets-operator-manager-role 6 6 rules: 7 7 - apiGroups: 8 8 - "" ··· 18 18 verbs: 19 19 - get 20 20 - list 21 + - patch 21 22 - watch 22 23 - apiGroups: 23 24 - ""
+1
helm/hsm-secrets-operator/templates/rbac/role.yaml
··· 21 21 verbs: 22 22 - get 23 23 - list 24 + - patch 24 25 - watch 25 26 - apiGroups: 26 27 - ""