diff options
author | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2019-05-21 13:52:42 -0700 |
---|---|---|
committer | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2019-05-21 14:09:00 -0700 |
commit | 1edca413dfbc05e438541929579ed7ed6aed450e (patch) | |
tree | a0627e24c5d96e3a67e4d4c90c04a20443ed060e /vnfs/DAaaS/collectd-operator/deploy/role.yaml | |
parent | 117240ff3abb80c8e6e9b7aee04a204e969baff4 (diff) |
CollectD Operator - Skeleton code
Skeleton code for CollectD Operator repo.
Issue-ID: ONAPARC-461
Signed-off-by: Dileep Ranganathan <dileep.ranganathan@intel.com>
Change-Id: I3894091cb6ec5ae11995e7914cf20e09b0def20a
Diffstat (limited to 'vnfs/DAaaS/collectd-operator/deploy/role.yaml')
-rw-r--r-- | vnfs/DAaaS/collectd-operator/deploy/role.yaml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/vnfs/DAaaS/collectd-operator/deploy/role.yaml b/vnfs/DAaaS/collectd-operator/deploy/role.yaml new file mode 100644 index 00000000..c748132c --- /dev/null +++ b/vnfs/DAaaS/collectd-operator/deploy/role.yaml @@ -0,0 +1,41 @@ +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: collectd-operator +rules: +- apiGroups: + - "" + resources: + - pods + - services + - endpoints + - persistentvolumeclaims + - events + - configmaps + - secrets + verbs: + - "*" +- apiGroups: + - apps + resources: + - deployments + - daemonsets + - replicasets + - statefulsets + verbs: + - "*" +- apiGroups: + - monitoring.coreos.com + resources: + - servicemonitors + verbs: + - "get" + - "create" +- apiGroups: + - apps + resources: + - deployments/finalizers + resourceNames: + - collectd-operator + verbs: + - "update" |