[kubeless] Add functions-namespace config options (#12686)

* [mongodb] Update README with ingress setup

Signed-off-by: Chirica Gheorghe <chiricagheorghe@gmail.com>

* [kubeless] Add option to set functions-namespace

Signed-off-by: Chirica Gheorghe <chiricagheorghe@gmail.com>
This commit is contained in:
Chirica Gheorghe
2019-04-02 05:28:34 -07:00
committed by Kubernetes Prow Robot
parent 1eaeebaae1
commit 363a694d4e
4 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: kubeless
version: 2.0.2
version: 2.0.3
appVersion: v1.0.3
description: Kubeless is a Kubernetes-native serverless framework. It runs on top of your Kubernetes cluster and allows you to deploy small unit of code without having to build container images.
icon: https://cloud.githubusercontent.com/assets/4056725/25480209/1d5bf83c-2b48-11e7-8db8-bcd650f31297.png
+1
View File
@@ -56,6 +56,7 @@ The following table lists the configurable parameters of the Kubeless chart and
| Parameter | Description | Default |
| ----------------------------------------------------------------- | ------------------------------------------ | ----------------------------------------- |
| `rbac.create` | Create RBAC backed ServiceAccount | `false` |
| `config.functionsNamespace` | Functions namespace | "" |
| `config.builderImage` | Function builder image | `kubeless/function-image-builder` |
| `config.builderImagePullSecret` | Secret to pull builder image | "" |
| `config.builderImage` | Provision image | `kubeless/unzip` |
@@ -1,5 +1,6 @@
apiVersion: v1
data:
functions-namespace: "{{ .Values.config.functionsNamespace | default .Release.Namespace }}"
builder-image: "{{ .Values.config.builderImage }}:{{ .Values.controller.deployment.functionController.image.tag }}"
builder-image-secret: "{{ .Values.config.builderImagePullSecret }}"
deployment: "{{ .Values.config.deploymentTemplate }}"
+1
View File
@@ -35,6 +35,7 @@ controller:
## Kubeless configuration
config:
functionsNamespace: ""
builderImage: kubeless/function-image-builder
builderImagePullSecret: ""
deploymentTemplate: '{}'