Skip to content

Commit 5f3b6a7

Browse files
committed
Upgrades for Alpine base image and external dependencies
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 026394c commit 5f3b6a7

25 files changed

+488
-362
lines changed

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.13
5+
version: 11.1.14
66
sources:
77
- https://github.com/openfaas/faas
88
- https://github.com/openfaas/faas-netes

chart/openfaas/values.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ dashboard:
6767
## now be set "enabled=false" when using the new autoscaler
6868
## since it handles scaling to zero
6969
faasIdler:
70-
image: ghcr.io/openfaasltd/faas-idler:0.5.2
70+
image: ghcr.io/openfaasltd/faas-idler:0.5.3
7171
replicas: 1
7272
enabled: false
7373
inactivityDuration: 3m # If a function is inactive for 15 minutes, it may be scaled to zero
@@ -102,7 +102,7 @@ oidcAuthPlugin:
102102
securityContext: true
103103

104104
gatewayPro:
105-
image: ghcr.io/openfaasltd/gateway:0.2.11
105+
image: ghcr.io/openfaasltd/gateway:0.2.12
106106

107107
gateway:
108108
image: ghcr.io/openfaas/gateway:0.26.3
@@ -154,10 +154,10 @@ basicAuthPlugin:
154154
cpu: "20m"
155155

156156
faasnetesPro:
157-
image: ghcr.io/openfaasltd/faas-netes:0.2.4
157+
image: ghcr.io/openfaasltd/faas-netes:0.2.5
158158

159159
operatorPro:
160-
image: ghcr.io/openfaasltd/faas-netes:0.2.4
160+
image: ghcr.io/openfaasltd/faas-netes:0.2.5
161161

162162
faasnetes:
163163
image: ghcr.io/openfaas/faas-netes:0.16.4
@@ -190,7 +190,7 @@ operator:
190190
#
191191
# Enable automatically when nats.queueMode is set to "jetstream"
192192
jetstreamQueueWorker:
193-
image: ghcr.io/openfaasltd/jetstream-queue-worker:0.3.3
193+
image: ghcr.io/openfaasltd/jetstream-queue-worker:0.3.5
194194
durableName: "faas-workers"
195195
logs:
196196
debug: false
@@ -238,7 +238,7 @@ queueWorker:
238238
# monitoring and auto-scaling components
239239
# both components
240240
prometheus:
241-
image: prom/prometheus:v2.41.0
241+
image: prom/prometheus:v2.42.0
242242
create: true
243243
resources:
244244
requests:
@@ -272,7 +272,7 @@ nats:
272272
host: ""
273273
port: ""
274274
# The version of NATS Core used with OpenFaaS Pro and JetStream
275-
image: nats:2.9.11
275+
image: nats:2.9.14
276276
enableMonitoring: false
277277
metrics:
278278
# Should stay off by default because the exporter is not multi-arch (yet)

chart/postgres-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 from PostgreSQL
33
name: postgres-connector
4-
version: 0.0.6
4+
version: 0.1.0
55
sources:
66
- https://github.com/openfaas/faas-netes
77
home: https://www.openfaas.com

chart/postgres-connector/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# You will need to create a license named "openfaas-license" - see the
66
# chart README for detailed instructions.
77

8-
image: ghcr.io/openfaasltd/postgres-connector:0.2.0
8+
image: ghcr.io/openfaasltd/postgres-connector:0.2.1
99

1010
replicas: 1
1111

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.9
4+
version: 0.4.0
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
@@ -31,7 +31,7 @@ buildkit:
3131
# nodepool for the function builder pods, which is recycled often
3232
# through the use of spot instances or preemptive VMs.
3333
#
34-
# image: moby/buildkit:v0.11.1
34+
# image: moby/buildkit:v0.11.3
3535
# rootless: false
3636
# securityContext:
3737
# runAsUser: 0
@@ -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.2-rootless
44+
image: moby/buildkit:v0.11.3-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.3
5+
version: 0.1.4
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.3
1+
image: ghcr.io/openfaasltd/jetstream-queue-worker:0.3.5
22

33
replicas: 1
44

chart/sns-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: Invoke functions from an AWS SNS messages.
33
name: sns-connector
4-
version: 0.1.1
4+
version: 0.1.2
55
sources:
66
- https://github.com/openfaas/faas-netes
77
home: https://www.openfaas.com

chart/sns-connector/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# You will need to create a license named "openfaas-license" - see the
66
# chart README for detailed instructions.
77

8-
image: ghcr.io/openfaasltd/sns-connector:0.0.2
8+
image: ghcr.io/openfaasltd/sns-connector:0.1.0
99

1010
replicas: 1
1111

0 commit comments

Comments
 (0)