* handle error condition in fission fn log command * use the single stream for log exclude fetcher logs * add all pods in the fn logs command * update the previous stable version * remove proxy to the controller for influxdb call * stop running controller if influxdb flag turned true * port-forward for influx DB * remove controller dependency from test case * port forward to influx DB if URL not provided by the user * archive pruner test
14 lines
373 B
YAML
14 lines
373 B
YAML
{{- if .Values.controller.enabled }}
|
|
kind: ClusterRoleBinding
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: {{ .Release.Name }}-controller
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: fission-controller
|
|
namespace: {{ .Release.Namespace }}
|
|
roleRef:
|
|
kind: ClusterRole
|
|
name: {{ .Release.Name }}-controller
|
|
apiGroup: rbac.authorization.k8s.io
|
|
{{- end -}} |