Skip to content

Commit 48c78db

Browse files
committed
Release new version
1 parent d8f58d1 commit 48c78db

File tree

33 files changed

+57
-57
lines changed

33 files changed

+57
-57
lines changed

Dockerfile-initializer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN mix deps.get \
2727
&& mix release spawn_initializer
2828

2929
# ---- Application Stage ----
30-
FROM alpine:3.19.1
30+
FROM alpine:3.20
3131

3232
RUN apk add --no-cache --update zstd ncurses-libs libstdc++ libgcc
3333

Dockerfile-operator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ RUN cd spawn_operator/spawn_operator \
3838
&& mix release spawn_operator
3939

4040
# ---- Application Stage ----
41-
FROM alpine:3.19.1
41+
FROM alpine:3.20
4242

4343
RUN apk add --no-cache --update zstd ncurses-libs libstdc++ libgcc
4444

Dockerfile-proxy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ RUN cd spawn_proxy/proxy \
3838
&& mix release proxy
3939

4040
# ---- Application Stage ----
41-
FROM alpine:3.19.1
41+
FROM alpine:3.20
4242

4343
RUN apk add --no-cache --update zstd ncurses-libs libstdc++ libgcc
4444

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=1.3.3
1+
version=1.4.0
22
registry=eigr
33

44
CLUSTER_NAME=spawn-k8s

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ services:
6666
- mysql-compose-network
6767

6868
spawn-proxy:
69-
image: eigr/spawn-proxy:1.3.3
69+
image: eigr/spawn-proxy:1.4.0
7070
restart: always
7171
environment:
7272
PROXY_APP_NAME: spawn

docs/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ metadata:
100100
spec:
101101
host:
102102
embedded: true # This indicates that it is a native BEAM application and therefore does not need a sidecar proxy attached.
103-
image: eigr/dice-game-example:1.3.3
103+
image: eigr/dice-game-example:1.4.0
104104
ports:
105105
- name: "http"
106106
containerPort: 8800

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ kubectl create ns eigr-functions && curl -L https://github.com/eigr/spawn/releas
2020
> **_NOTE:_** You need to inform the desired release version. For example:
2121
2222
```shell
23-
kubectl create ns eigr-functions && curl -L https://github.com/eigr/spawn/releases/download/v1.3.3/manifest.yaml | kubectl apply -f -
23+
kubectl create ns eigr-functions && curl -L https://github.com/eigr/spawn/releases/download/v1.4.0/manifest.yaml | kubectl apply -f -
2424
```
2525

2626
[Next: Getting Started](getting_started.md)

examples/k8s/dice-game/host.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
spawn-eigr.io/actor-system: game-system
99
spec:
1010
host:
11-
image: eigr/dice-game-example:1.3.3
11+
image: eigr/dice-game-example:1.4.0
1212
embedded: true
1313
ports:
1414
- name: "http"

examples/k8s/security/acl/host.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ metadata:
99
spawn-eigr.io/sidecar-http-port: "9001"
1010
spawn-eigr.io/sidecar-pubsub-adapter: "nats"
1111
spawn-eigr.io/sidecar-pubsub-nats-hosts: "nats://spawn-nats:4222"
12-
spawn-eigr.io/sidecar-image-tag: "docker.io/eigr/spawn-proxy:1.3.3"
12+
spawn-eigr.io/sidecar-image-tag: "docker.io/eigr/spawn-proxy:1.4.0"
1313
spec:
1414
autoscaler:
1515
max: 3

examples/k8s/security/authentication/basic/host.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ metadata:
3434
spawn-eigr.io/sidecar-http-port: "9001"
3535
spawn-eigr.io/sidecar-pubsub-adapter: "nats"
3636
spawn-eigr.io/sidecar-pubsub-nats-hosts: "nats://spawn-nats:4222"
37-
spawn-eigr.io/sidecar-image-tag: "docker.io/eigr/spawn-proxy:1.3.3"
37+
spawn-eigr.io/sidecar-image-tag: "docker.io/eigr/spawn-proxy:1.4.0"
3838
spec:
3939
autoscaler:
4040
max: 3

0 commit comments

Comments
 (0)