Skip to content

Commit a8903be

Browse files
author
Adriano Santos
committed
bump spawn from v2.0.0-RC5 -> V2.0.0-RC9
1 parent e3c9875 commit a8903be

File tree

39 files changed

+68
-68
lines changed

39 files changed

+68
-68
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
context: .
8383
file: ./Dockerfile-proxy
8484
push: true
85-
tags: ghcr.io/eigr/spawn-proxy:latest,ghcr.io/eigr/spawn-proxy:2.0.0-RC5
85+
tags: ghcr.io/eigr/spawn-proxy:latest,ghcr.io/eigr/spawn-proxy:2.0.0-RC9
8686
github-token: ${{ secrets.GHCR_PAT }}
8787

8888
- name: Build and push spawn operator image
@@ -91,7 +91,7 @@ jobs:
9191
context: .
9292
file: ./Dockerfile-operator
9393
push: true
94-
tags: ghcr.io/eigr/spawn-operator:latest,ghcr.io/eigr/spawn-operator:2.0.0-RC5
94+
tags: ghcr.io/eigr/spawn-operator:latest,ghcr.io/eigr/spawn-operator:2.0.0-RC9
9595
github-token: ${{ secrets.GHCR_PAT }}
9696

9797
- name: Build and push spawn initializer image
@@ -100,7 +100,7 @@ jobs:
100100
context: .
101101
file: ./Dockerfile-initializer
102102
push: true
103-
tags: ghcr.io/eigr/spawn-initializer:latest,ghcr.io/eigr/spawn-initializer:2.0.0-RC5
103+
tags: ghcr.io/eigr/spawn-initializer:latest,ghcr.io/eigr/spawn-initializer:2.0.0-RC9
104104
github-token: ${{ secrets.GHCR_PAT }}
105105

106106
- name: Install Zig

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=2.0.0-RC5
1+
version=2.0.0-RC9
22
registry=ghcr.io/eigr
33

44
CLUSTER_NAME=spawn-k8s

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ services:
7474
ports:
7575
- "4222:4222"
7676
# spawn-proxy:
77-
# image: eigr/spawn-proxy:2.0.0-RC5
77+
# image: eigr/spawn-proxy:2.0.0-RC9
7878
# restart: always
7979
# environment:
8080
# PROXY_APP_NAME: spawn

docs/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ metadata:
302302
spec:
303303
host:
304304
embedded: true # Indicates a native BEAM application, so no sidecar proxy is needed
305-
image: eigr/dice-game-example:2.0.0-RC5
305+
image: eigr/dice-game-example:2.0.0-RC9
306306
ports:
307307
- name: http
308308
containerPort: 8800

docs/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The recommended way to install Spawn is via our CLI tool.
1212
Installing is very simple. First download and install our CLI in one command line:
1313

1414
```sh
15-
curl -sSL https://github.com/eigr/spawn/releases/download/v2.0.0-RC5/install.sh | sh
15+
curl -sSL https://github.com/eigr/spawn/releases/download/v2.0.0-RC9/install.sh | sh
1616
```
1717

1818
At this point you will be ready to also install our Kubernetes Operator.
@@ -38,7 +38,7 @@ kubectl create ns eigr-functions && curl -L https://github.com/eigr/spawn/releas
3838
> **_NOTE:_** You need to inform the desired release version. For example:
3939
4040
```shell
41-
kubectl create ns eigr-functions && curl -L https://github.com/eigr/spawn/releases/download/v2.0.0-RC5/manifest.yaml | kubectl apply -f -
41+
kubectl create ns eigr-functions && curl -L https://github.com/eigr/spawn/releases/download/v2.0.0-RC9/manifest.yaml | kubectl apply -f -
4242
```
4343

4444
[Back to Index](index.md)

docs/sdks/elixir/getting_started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ by adding `spawn_sdk` and `spawn_statestores_*` to your list of dependencies in
1212
```elixir
1313
def deps do
1414
[
15-
{:spawn_sdk, "~> 2.0.0-RC5"},
15+
{:spawn_sdk, "~> 2.0.0-RC9"},
1616

1717
# You can uncomment one of those dependencies if you are going to use Persistent Actors
18-
#{:spawn_statestores_mariadb, "~> 2.0.0-RC5"},
19-
#{:spawn_statestores_postgres, "~> 2.0.0-RC5"},
18+
#{:spawn_statestores_mariadb, "~> 2.0.0-RC9"},
19+
#{:spawn_statestores_postgres, "~> 2.0.0-RC9"},
2020
]
2121
end
2222
```

docs/sdks/node/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
First install CLI:
44

55
```SH
6-
curl -sSL https://github.com/eigr/spawn/releases/download/v2.0.0-RC5/install.sh | sh
6+
curl -sSL https://github.com/eigr/spawn/releases/download/v2.0.0-RC9/install.sh | sh
77
```
88

99
_We recommend you to use Typescript for better usage overall._

examples/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:2.0.0-RC5
11+
image: eigr/dice-game-example:2.0.0-RC9
1212
embedded: true
1313
ports:
1414
- name: "http"

examples/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: "ghcr.io/eigr/spawn-proxy:2.0.0-RC5"
12+
spawn-eigr.io/sidecar-image-tag: "ghcr.io/eigr/spawn-proxy:2.0.0-RC9"
1313
spec:
1414
autoscaler:
1515
max: 3

examples/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: "ghcr.io/eigr/spawn-proxy:2.0.0-RC5"
37+
spawn-eigr.io/sidecar-image-tag: "ghcr.io/eigr/spawn-proxy:2.0.0-RC9"
3838
spec:
3939
autoscaler:
4040
max: 3

0 commit comments

Comments
 (0)