Skip to content

Commit bd29b93

Browse files
committed
Updates to pro-builder, cron-connector, JetStream and OpenFaaS CE
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent caf1eb0 commit bd29b93

22 files changed

+444
-358
lines changed

chart/cron-connector/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
description: Trigger OpenFaaS Functions with cron
33
name: cron-connector
4-
version: 0.6.3
4+
version: 0.6.4
55
sources:
66
- https://github.com/openfaas-incubator/cron-connector
77
home: https://www.openfaas.com

chart/cron-connector/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ gatewayURL: http://gateway.openfaas:8080
55
openfaasPro: false
66

77
pro:
8-
image: ghcr.io/openfaasltd/cron-connector:0.1.1
8+
image: ghcr.io/openfaasltd/cron-connector:0.1.2
99

1010
logs:
1111
# Log debug messages

chart/openfaas/Chart.yaml

Lines changed: 1 addition & 1 deletion
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.1.10
5+
version: 11.1.11
66
sources:
77
- https://github.com/openfaas/faas
88
- https://github.com/openfaas/faas-netes

chart/openfaas/values.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ dashboard:
6464
## now be set "enabled=false" when using the new autoscaler
6565
## since it handles scaling to zero
6666
faasIdler:
67-
image: ghcr.io/openfaasltd/faas-idler:0.5.1
67+
image: ghcr.io/openfaasltd/faas-idler:0.5.2
6868
replicas: 1
6969
enabled: false
7070
inactivityDuration: 3m # If a function is inactive for 15 minutes, it may be scaled to zero
@@ -95,14 +95,14 @@ oidcAuthPlugin:
9595
memory: "120Mi"
9696
cpu: "50m"
9797
replicas: 1
98-
image: ghcr.io/openfaasltd/openfaas-oidc-plugin:0.5.4
98+
image: ghcr.io/openfaasltd/openfaas-oidc-plugin:0.5.5
9999
securityContext: true
100100

101101
gatewayPro:
102-
image: ghcr.io/openfaasltd/gateway:0.2.9
102+
image: ghcr.io/openfaasltd/gateway:0.2.11
103103

104104
gateway:
105-
image: ghcr.io/openfaas/gateway:0.26.2
105+
image: ghcr.io/openfaas/gateway:0.26.3
106106
readTimeout: "65s"
107107
writeTimeout: "65s"
108108
upstreamTimeout: "60s" # Must be smaller than read/write_timeout
@@ -151,13 +151,13 @@ basicAuthPlugin:
151151
cpu: "20m"
152152

153153
faasnetesPro:
154-
image: ghcr.io/openfaasltd/faas-netes:0.2.3
154+
image: ghcr.io/openfaasltd/faas-netes:0.2.4
155155

156156
operatorPro:
157-
image: ghcr.io/openfaasltd/faas-netes:0.2.3
157+
image: ghcr.io/openfaasltd/faas-netes:0.2.4
158158

159159
faasnetes:
160-
image: ghcr.io/openfaas/faas-netes:0.16.3
160+
image: ghcr.io/openfaas/faas-netes:0.16.4
161161
imagePullPolicy: "Always" # Image pull policy for deployed functions
162162
httpProbe: true # Setting to true will use HTTP for readiness and liveness probe on function pods
163163
setNonRootUser: false # It's recommended to set this to "true", but test your images before committing to it
@@ -175,7 +175,7 @@ faasnetes:
175175
cpu: "50m"
176176

177177
operator:
178-
image: ghcr.io/openfaas/faas-netes:0.16.3
178+
image: ghcr.io/openfaas/faas-netes:0.16.4
179179
create: false
180180
resources:
181181
requests:
@@ -187,7 +187,7 @@ operator:
187187
#
188188
# Enable automatically when nats.queueMode is set to "jetstream"
189189
jetstreamQueueWorker:
190-
image: ghcr.io/openfaasltd/jetstream-queue-worker:0.3.1
190+
image: ghcr.io/openfaasltd/jetstream-queue-worker:0.3.3
191191
durableName: "faas-workers"
192192
logs:
193193
debug: false
@@ -202,7 +202,7 @@ jetstreamQueueWorker:
202202
#
203203
# Enabled automatically when openfaasPro is set to true
204204
queueWorkerPro:
205-
image: ghcr.io/openfaasltd/queue-worker:0.2.1
205+
image: ghcr.io/openfaasltd/queue-worker:0.2.2
206206
maxRetryAttempts: "10"
207207
maxRetryWait: "120s"
208208
initialRetryWait: "10s"

chart/pro-builder/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
description: Build OpenFaaS functions via a REST API
33
name: pro-builder
4-
version: 0.3.8
4+
version: 0.3.9
55
sources:
66
- https://github.com/openfaas/faas-netes
77
home: https://www.openfaas.com

chart/pro-builder/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# image is for the pro-builder API
55
proBuilder:
6-
image: ghcr.io/openfaasltd/pro-builder:0.3.4
6+
image: ghcr.io/openfaasltd/pro-builder:0.3.6
77

88
# Set to 0 for unlimited, or some non-zero value for a hard limit
99
# the builder will return a HTTP 429 status code, then the client
@@ -41,7 +41,7 @@ buildkit:
4141
# For a rootless configuration, preferred, if the configuration
4242
# and Kernel version of your Kubernetes nodes supports it
4343
#
44-
image: moby/buildkit:v0.11.1-rootless
44+
image: moby/buildkit:v0.11.2-rootless
4545
rootless: true
4646
securityContext:
4747
# Needs Kubernetes >= 1.19

chart/queue-worker/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: queue-worker
33
description: JetStream for OpenFaaS queue-worker
44
type: application
5-
version: 0.1.2
5+
version: 0.1.3
66
keywords:
77
- openfaas
88
- jetstream

chart/queue-worker/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
image: ghcr.io/openfaasltd/jetstream-queue-worker:0.3.1
1+
image: ghcr.io/openfaasltd/jetstream-queue-worker:0.3.3
22

33
replicas: 1
44

docs/cron-connector-0.6.4.tgz

2.88 KB
Binary file not shown.

0 commit comments

Comments
 (0)