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
40 lines
886 B
YAML
40 lines
886 B
YAML
#
|
|
# Fission chart configuration
|
|
#
|
|
|
|
## Kubernetes configuration
|
|
## For minikube, set this to NodePort, elsewhere use LoadBalancer.
|
|
serviceType: LoadBalancer
|
|
|
|
## Fission image repostiroy
|
|
image: fission/fission-bundle
|
|
|
|
## Fission image version
|
|
imageTag: nightly20170705
|
|
|
|
## Port at which Fission controller service should be exposed
|
|
controllerPort: 31313
|
|
|
|
## Port at which Fission router service should be exposed
|
|
routerPort: 31314
|
|
|
|
## Namespace in which to run fission functions (this is different from
|
|
## the release namespace)
|
|
functionNamespace: fission-function
|
|
|
|
## Set up openshift RBAC rule
|
|
openshift: false
|
|
|
|
## Logger config
|
|
logger:
|
|
influxdbAdmin: "admin"
|
|
fluentdImage: fission/fluentd
|
|
|
|
## Fission ui config
|
|
fissionUiImage: fission/fission-ui:0.1.0
|
|
|
|
## Message queue trigger config
|
|
### NATS Streaming
|
|
nats:
|
|
authToken: "defaultFissionAuthToken"
|
|
clusterID: "fissionMQTrigger" |