Skip to content
Snippets Groups Projects
Commit f47e7761 authored by Alex Ellis (OpenFaaS Ltd)'s avatar Alex Ellis (OpenFaaS Ltd)
Browse files

Fix issue with JetStream and maxInflight/ackWait config


These were read from an incorrect section in values.yaml

Signed-off-by: default avatarAlex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
parent 03616ca8
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@
## Deploy OpenFaaS
### 1) Install with arkade
### 1) Install Community Edition (CE) with arkade
It is recommended that you use arkade to install OpenFaaS. arkade is a CLI tool which automates the helm CLI and chart download and installation. The `openfaas` app also has a number of options available via `arkade install openfaas --help`
......@@ -76,7 +76,7 @@ Now decide how you want to expose the services and edit the `helm upgrade` comma
* To use an IngressController add `--set ingress.enabled=true` (recommended for production, for use with TLS)
* To use a LoadBalancer add `--set serviceType=LoadBalancer` (not recommended, since it will expose plain HTTP)
## Deploy OpenFaaS Community Edition (CE)
#### Deploy OpenFaaS Community Edition (CE)
> OpenFaaS Community Edition is meant exploration and development.
>
......@@ -103,7 +103,7 @@ echo "OpenFaaS admin password: $PASSWORD"
It is not recommended to disable basic authentication.
## Deploy OpenFaaS Pro
#### Deploy OpenFaaS Pro
* Create the required secret with your [OpenFaaS Pro license](https://www.openfaas.com/pricing/):
......@@ -130,13 +130,14 @@ The main change here is to add: `--set openfaasPro=true`
You can also review recommended Pro values in [values-pro.yaml](values-pro.yaml)
### Installing OpenFaaS without Cluster Admin access
#### Installing OpenFaaS Pro without Cluster Admin access
In order to install OpenFaaS, you need to create at least one namespace, a Cluster Admin role and Custom Resource Definitions (CRDs), however some DevOps teams prevent business teams from getting access to Cluster Admin.
In order to install OpenFaaS Pro, you need to create at least one namespace, a Cluster Admin role and Custom Resource Definitions (CRDs), however some DevOps teams prevent business teams from getting access to Cluster Admin.
This option is reserved for OpenFaaS Pro customers, see the installation steps here: [Split installation instructions](https://github.com/openfaas/openfaas-pro/blob/master/split-installation.md)
See also:
* Scale-down to zero (in this document)
* [OpenFaaS Pro SSO/OIDC](https://docs.openfaas.com/openfaas-pro/sso/)
* [OpenFaaS Pro Kafka Event Connector](https://docs.openfaas.com/openfaas-pro/kafka-events/)
......
......@@ -61,7 +61,7 @@ spec:
- name: ack_wait
value: "{{ .Values.queueWorker.ackWait }}"
- name: max_inflight
value: "{{ .Values.queueWorker.maxInflight }}"
value: "{{ .Values.queueWorkerPro.maxInflight }}"
- name: "debug"
value: "{{ .Values.jetstreamQueueWorker.logs.debug }}"
- name: "log_encoding"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment