* Sync a few files from fission-all to fission-core chart * Change values in fission-all chart We keep the following components by default disabled now, which were enabled by default earlier. 1. nats - Fission Nats integration 2. influxdb - Influxdb and logger component 3. prometheus - Prometheus disabled by default 4. canaryDeployment - Disabled by default This change reduces the need for a fission-core chart and we can configure values of fission-all so that it can provide the behaviour of fission-all as well as fission-core. * Remove fission-core chart * Add README in the fission-all chart * Rename clusterrolebinding fission-crd to fission-cr-admin * Add icon and sources in helm chart Signed-off-by: Sanket Sudake <sanketsudake@gmail.com>
71 lines
1.3 KiB
YAML
71 lines
1.3 KiB
YAML
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: Role
|
|
metadata:
|
|
name: fission-fetcher
|
|
namespace: default
|
|
rules:
|
|
- apiGroups:
|
|
- ""
|
|
resources:
|
|
- configmaps
|
|
- secrets
|
|
- pods
|
|
verbs:
|
|
- get
|
|
- list
|
|
- watch
|
|
- apiGroups:
|
|
- ""
|
|
resources:
|
|
- events
|
|
verbs:
|
|
- "*"
|
|
- apiGroups:
|
|
- fission.io
|
|
resources:
|
|
- canaryconfigs
|
|
- environments
|
|
- functions
|
|
- httptriggers
|
|
- kuberneteswatchtriggers
|
|
- messagequeuetriggers
|
|
- packages
|
|
- timetriggers
|
|
verbs:
|
|
- "*"
|
|
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: Role
|
|
metadata:
|
|
name: fission-builder
|
|
namespace: default
|
|
rules:
|
|
- apiGroups:
|
|
- fission.io
|
|
resources:
|
|
- canaryconfigs
|
|
- environments
|
|
- functions
|
|
- httptriggers
|
|
- kuberneteswatchtriggers
|
|
- messagequeuetriggers
|
|
- packages
|
|
- timetriggers
|
|
verbs:
|
|
- "*"
|
|
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: Role
|
|
metadata:
|
|
namespace: {{ .Values.functionNamespace }}
|
|
name: event-fetcher
|
|
rules:
|
|
- apiGroups: [""] # "" indicates the core API group
|
|
resources: ["pods"]
|
|
verbs: ["get", "watch", "list"]
|
|
- apiGroups: [""] # "" indicates the core API group
|
|
resources: ["events"]
|
|
verbs: ["*"]
|