Skip to content

Commit f47e776

Browse files
committed
Fix issue with JetStream and maxInflight/ackWait config
These were read from an incorrect section in values.yaml Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 03616ca commit f47e776

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

chart/openfaas/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
## Deploy OpenFaaS
2121

22-
### 1) Install with arkade
22+
### 1) Install Community Edition (CE) with arkade
2323

2424
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`
2525

@@ -76,7 +76,7 @@ Now decide how you want to expose the services and edit the `helm upgrade` comma
7676
* To use an IngressController add `--set ingress.enabled=true` (recommended for production, for use with TLS)
7777
* To use a LoadBalancer add `--set serviceType=LoadBalancer` (not recommended, since it will expose plain HTTP)
7878

79-
## Deploy OpenFaaS Community Edition (CE)
79+
#### Deploy OpenFaaS Community Edition (CE)
8080

8181
> OpenFaaS Community Edition is meant exploration and development.
8282
>
@@ -103,7 +103,7 @@ echo "OpenFaaS admin password: $PASSWORD"
103103

104104
It is not recommended to disable basic authentication.
105105

106-
## Deploy OpenFaaS Pro
106+
#### Deploy OpenFaaS Pro
107107

108108
* Create the required secret with your [OpenFaaS Pro license](https://www.openfaas.com/pricing/):
109109

@@ -130,13 +130,14 @@ The main change here is to add: `--set openfaasPro=true`
130130

131131
You can also review recommended Pro values in [values-pro.yaml](values-pro.yaml)
132132

133-
### Installing OpenFaaS without Cluster Admin access
133+
#### Installing OpenFaaS Pro without Cluster Admin access
134134

135-
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.
135+
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.
136136

137137
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)
138138

139139
See also:
140+
140141
* Scale-down to zero (in this document)
141142
* [OpenFaaS Pro SSO/OIDC](https://docs.openfaas.com/openfaas-pro/sso/)
142143
* [OpenFaaS Pro Kafka Event Connector](https://docs.openfaas.com/openfaas-pro/kafka-events/)

chart/openfaas/templates/jetstream-queueworker-dep.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ spec:
6161
- name: ack_wait
6262
value: "{{ .Values.queueWorker.ackWait }}"
6363
- name: max_inflight
64-
value: "{{ .Values.queueWorker.maxInflight }}"
64+
value: "{{ .Values.queueWorkerPro.maxInflight }}"
6565
- name: "debug"
6666
value: "{{ .Values.jetstreamQueueWorker.logs.debug }}"
6767
- name: "log_encoding"

0 commit comments

Comments
 (0)