Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b3556c1

Browse files
authoredOct 4, 2022
Merge branch 'openfaas:master' into feat-add-startup-error-when-running-in-kube-system
2 parents 4f42a4a + 85d425b commit b3556c1

22 files changed

+411
-413
lines changed
 

‎2022-09-30_12_01_41.txt

-100
This file was deleted.

‎chart/openfaas/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
type: application
33
description: OpenFaaS - Serverless Functions Made Simple
44
name: openfaas
5-
version: 11.0.1
5+
version: 11.0.4
66
sources:
77
- https://github.com/openfaas/faas
88
- https://github.com/openfaas/faas-netes

‎chart/openfaas/README.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,9 @@ See [values.yaml](./values.yaml) for detailed configuration.
428428
| Parameter | Description | Default |
429429
| ----------------------- | ---------------------------------- | ---------------------------------------------------------- |
430430
| `affinity`| Global [affinity](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/) rules assigned to deployments | `{}` |
431-
| `async` | Enables asynchronous function invocations. If `.nats.external.enabled` is `false`, also deploys NATS Streaming | `true` |
431+
yaml) |
432+
| `async` | Enables asynchronous function invocations. If `.nats.external.enabled` is `false`, also deploys NATS | `true` |
433+
| `queueMode` | Set to `jetstream` to run the async system backed by NATS JetStream. By default the async system uses NATS Streaming|
432434
| `basic_auth` | Enable basic authentication on the gateway and Prometheus. Warning: do not disable. | `true` |
433435
| `basicAuthPlugin.image` | Container image used for basic-auth-plugin | See [values.yaml](./values.yaml) |
434436
| `basicAuthPlugin.replicas` | Replicas of the basic-auth-plugin | `1` |
@@ -509,7 +511,11 @@ See [values.yaml](./values.yaml) for detailed configuration.
509511

510512
| Parameter | Description | Default |
511513
| ----------------------- | ---------------------------------- | ---------------------------------------------------------- |
512-
| `nats.channel` | The name of the NATS Streaming channel to use for asynchronous function invocations | `faas-request` |
514+
| `jetstreamQueueWorker.durableName` | Durable name used by JetStream consumers | `faas-workers` |
515+
| `jetstreamQueueWorker.image` | Container image used for the queue-worker when the `queueMode` is `jetstream` | See [values.yaml](./values.yaml) |
516+
| `jetstreamQueueWorker.logs.debug` | Log debug messages | `false` |
517+
| `jetstreamQueueWorker.logs.format` | Set the log format, supports `console` or `json` | `console` |
518+
| `nats.channel` | The name of the NATS Streaming channel or NATS JetStream stream to use for asynchronous function invocations | `faas-request` |
513519
| `nats.enableMonitoring` | Enable the NATS monitoring endpoints on port `8222` for NATS Streaming deployments managed by this chart | `false` |
514520
| `nats.external.clusterName` | The name of the externally-managed NATS Streaming server | `""` |
515521
| `nats.external.enabled` | Whether to use an externally-managed NATS Streaming server | `false` |
@@ -519,6 +525,7 @@ See [values.yaml](./values.yaml) for detailed configuration.
519525
| `nats.metrics.enabled` | Export Prometheus metrics for NATS, no multi-arch support | `false` |
520526
| `nats.metrics.image` | Container image used for the NATS Prometheus exporter | See [values.yaml](./values.yaml) |
521527
| `nats.resources` | Resource limits and requests for the nats pods | See [values.yaml](./values.yaml) |
528+
| `nats.streamReplication` | JetStream stream replication factor. For production a value of at least 3 is recommended. | `1` |
522529
| `queueWorker.ackWait` | Max duration of any async task/request | `60s` |
523530
| `queueWorker.image` | Container image used for the CE edition of the queue-worker| See [values.yaml](./values.yaml) |
524531
| `queueWorker.maxInflight` | Control the concurrent invocations | `1` |
@@ -533,6 +540,7 @@ See [values.yaml](./values.yaml) for detailed configuration.
533540
| `queueWorkerPro.maxRetryWait` | Maximum amount of time to wait between retries | `120s` |
534541
| `queueWorkerPro.printResponseBody` | Print the function response body | `false` |
535542
| `queueWorkerPro.printRequestBody` | Print the request body| `false` |
543+
| `stan.image` | Container image used for NATS streaming server | See [values.yaml](./values.yaml) |
536544

537545
### Dashboard (OpenFaaS Pro)
538546

‎chart/openfaas/values-pro.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,11 @@ queueWorker:
4646
# https://www.openfaas.com/blog/jetstream-for-openfaas/
4747
queueMode: jetstream
4848

49+
# Set stream replication factor.
50+
# For production a value of at least 3 is recommended for NATS JetStream to be resilient.
51+
# See https://github.com/openfaas/openfaas-pro/blob/master/jetstream.md
52+
nats:
53+
streamReplication: 3
54+
4955
# For timeouts longer than 60 seconds see:
5056
# https://docs.openfaas.com/tutorials/expanded-timeouts/

‎chart/openfaas/values.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ oidcAuthPlugin:
105105
securityContext: true
106106

107107
gatewayPro:
108-
image: ghcr.io/openfaasltd/gateway:0.2.2
108+
image: ghcr.io/openfaasltd/gateway:0.2.4
109109

110110
gateway:
111-
image: ghcr.io/openfaas/gateway:0.25.1
111+
image: ghcr.io/openfaas/gateway:0.25.2
112112
readTimeout: "65s"
113113
writeTimeout: "65s"
114114
upstreamTimeout: "60s" # Must be smaller than read/write_timeout
@@ -135,18 +135,18 @@ gateway:
135135
cpu: "50m"
136136

137137
basicAuthPlugin:
138-
image: ghcr.io/openfaas/basic-auth:0.25.1
138+
image: ghcr.io/openfaas/basic-auth:0.25.2
139139
replicas: 1
140140
resources:
141141
requests:
142142
memory: "50Mi"
143143
cpu: "20m"
144144

145145
faasnetesPro:
146-
image: ghcr.io/openfaasltd/faas-netes:0.1.7
146+
image: ghcr.io/openfaasltd/faas-netes:0.1.9
147147

148148
operatorPro:
149-
image: ghcr.io/openfaasltd/faas-netes:0.1.7
149+
image: ghcr.io/openfaasltd/faas-netes:0.1.9
150150

151151
faasnetes:
152152
image: ghcr.io/openfaas/faas-netes:0.15.2
@@ -180,7 +180,7 @@ operator:
180180
#
181181
# Enable automatically when nats.queueMode is set to "jetstream"
182182
jetstreamQueueWorker:
183-
image: ghcr.io/openfaasltd/jetstream-queue-worker:0.2.0
183+
image: ghcr.io/openfaasltd/jetstream-queue-worker:0.2.1
184184
durableName: "faas-workers"
185185
logs:
186186
debug: false
@@ -241,7 +241,7 @@ alertmanager:
241241

242242
stan:
243243
# Image used for nats deployment when using async with NATS-Streaming.
244-
image: nats-streaming:0.22.0
244+
image: nats-streaming:0.24.6
245245

246246
# NATS is required for async
247247
nats:

‎docs/cron-connector-0.6.0.tgz

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)