Improve fission helm chart; split it into "fission core" and "fission all". fission-core is the minimal install, and fission-all will have all the bells and whistles. * Update/Add fission-core & fission-all helm charts * Fix incompatible types for comparison * Add message queue trigger * Rename openshiftRBAC to openshift * Update documentation & comments * Fix logger & kubewatcher failed to access kubernetes resource due to RBAC
10 lines
250 B
YAML
10 lines
250 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: influxdb
|
|
labels:
|
|
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
|
type: Opaque
|
|
data:
|
|
username: {{ .Values.logger.influxdbAdmin | b64enc | quote }}
|
|
password: {{ randAlphaNum 20 | b64enc | quote }} |