Skip to content

Commit ba0b650

Browse files
author
Adriano Santos
committed
release new version
1 parent 3c4a472 commit ba0b650

File tree

40 files changed

+72
-71
lines changed

40 files changed

+72
-71
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:1.4.3
85+
tags: ghcr.io/eigr/spawn-proxy:latest,ghcr.io/eigr/spawn-proxy:2.0.0-RC1
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:1.4.3
94+
tags: ghcr.io/eigr/spawn-operator:latest,ghcr.io/eigr/spawn-operator:2.0.0-RC1
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:1.4.3
103+
tags: ghcr.io/eigr/spawn-initializer:latest,ghcr.io/eigr/spawn-initializer:2.0.0-RC1
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=1.4.3
1+
version=2.0.0-RC1
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:1.4.3
77+
# image: eigr/spawn-proxy:2.0.0-RC1
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
@@ -300,7 +300,7 @@ metadata:
300300
spec:
301301
host:
302302
embedded: true # Indicates a native BEAM application, so no sidecar proxy is needed
303-
image: eigr/dice-game-example:1.4.3
303+
image: eigr/dice-game-example:2.0.0-RC1
304304
ports:
305305
- name: "http"
306306
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/v1.4.3/install.sh | sh
15+
curl -sSL https://github.com/eigr/spawn/releases/download/v2.0.0-RC1/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/v1.4.3/manifest.yaml | kubectl apply -f -
41+
kubectl create ns eigr-functions && curl -L https://github.com/eigr/spawn/releases/download/v2.0.0-RC1/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, "~> 1.4.3"},
15+
{:spawn_sdk, "~> 2.0.0-RC1"},
1616

1717
# You can uncomment one of those dependencies if you are going to use Persistent Actors
18-
#{:spawn_statestores_mariadb, "~> 1.4.3"},
19-
#{:spawn_statestores_postgres, "~> 1.4.3"},
18+
#{:spawn_statestores_mariadb, "~> 2.0.0-RC1"},
19+
#{:spawn_statestores_postgres, "~> 2.0.0-RC1"},
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/v1.4.3/install.sh | sh
6+
curl -sSL https://github.com/eigr/spawn/releases/download/v2.0.0-RC1/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:1.4.3
11+
image: eigr/dice-game-example:2.0.0-RC1
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:1.4.3"
12+
spawn-eigr.io/sidecar-image-tag: "ghcr.io/eigr/spawn-proxy:2.0.0-RC1"
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:1.4.3"
37+
spawn-eigr.io/sidecar-image-tag: "ghcr.io/eigr/spawn-proxy:2.0.0-RC1"
3838
spec:
3939
autoscaler:
4040
max: 3

0 commit comments

Comments
 (0)