Skip to content

Commit

Permalink
Release new version
Browse files Browse the repository at this point in the history
  • Loading branch information
Adriano Santos committed Apr 21, 2023
1 parent 65094be commit 8061d77
Show file tree
Hide file tree
Showing 20 changed files with 42 additions and 42 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=0.5.5
version=0.6.0
registry=eigr

CLUSTER_NAME=spawn-k8s
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ kubectl create ns eigr-functions && curl -L https://github.com/eigr/spawn/releas
> **_NOTE:_** You need to inform the desired release version. For example:
```shell
kubectl create ns eigr-functions && curl -L https://github.com/eigr/spawn/releases/download/v0.5.5/manifest.yaml | kubectl apply -f -
kubectl create ns eigr-functions && curl -L https://github.com/eigr/spawn/releases/download/v0.6.0/manifest.yaml | kubectl apply -f -
```

## Getting Started
Expand Down Expand Up @@ -259,7 +259,7 @@ metadata:
spec:
host:
embedded: true # This indicates that it is a native BEAM application and therefore does not need a sidecar proxy attached.
image: eigr/dice-game-example:0.5.5
image: eigr/dice-game-example:0.6.0
ports:
- name: "http"
containerPort: 8800
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ services:
- mysql-compose-network

spawn-proxy:
image: eigr/spawn-proxy:0.5.5
image: eigr/spawn-proxy:0.6.0
restart: always
environment:
PROXY_APP_NAME: spawn
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s/simple/host.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ metadata:
spawn-eigr.io/sidecar-mode: "sidecar"

# Optional
spawn-eigr.io/sidecar-image-tag: "docker.io/eigr/spawn-proxy:0.5.5"
spawn-eigr.io/sidecar-image-tag: "docker.io/eigr/spawn-proxy:0.6.0"

# Optional. Default 9001
spawn-eigr.io/sidecar-http-port: "9001"
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s/test-operator/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.serviceAccountName
image: eigr/spawn-operator:0.5.5
image: eigr/spawn-operator:0.6.0
name: spawn-operator
resources:
limits:
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s/test/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ spec:
- secretRef:
name: spawn-system-secret
name: actor-host-function
image: eigr/spawn-proxy:0.5.5
image: eigr/spawn-proxy:0.6.0
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8800
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s/test/proxy-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
kind: Service
metadata:
labels:
spawn-eigr.io/controller.version: 0.5.5
spawn-eigr.io/controller.version: 0.6.0
name: spawn-proxy-test
namespace: default
spec:
Expand Down
2 changes: 1 addition & 1 deletion lib/actors.ex
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ defmodule Actors do
protocol_major_version: 1,
protocol_minor_version: 2,
proxy_name: "spawn",
proxy_version: "0.5.5"
proxy_version: "0.6.0"
)
end

Expand Down
34 changes: 17 additions & 17 deletions priv/internal_versions.exs
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
defmodule InternalVersions do
# The order here is also the deploy order, its important to keep this way
@versions [
spawn_statestores: "0.5.5",
spawn_statestores_mysql: "0.5.5",
spawn_statestores_mssql: "0.5.5",
spawn_statestores_postgres: "0.5.5",
spawn_statestores_sqlite: "0.5.5",
spawn_statestores_cockroachdb: "0.5.5",
spawn: "0.5.5",
spawn_sdk: "0.5.5",
activator: "0.5.5",
activator_grpc: "0.5.5",
activator_http: "0.5.5",
activator_kafka: "0.5.5",
activator_pubsub: "0.5.5",
activator_rabbitmq: "0.5.5",
activator_sqs: "0.5.5",
proxy: "0.5.5",
spawn_operator: "0.5.5"
spawn_statestores: "0.6.0",
spawn_statestores_mysql: "0.6.0",
spawn_statestores_mssql: "0.6.0",
spawn_statestores_postgres: "0.6.0",
spawn_statestores_sqlite: "0.6.0",
spawn_statestores_cockroachdb: "0.6.0",
spawn: "0.6.0",
spawn_sdk: "0.6.0",
activator: "0.6.0",
activator_grpc: "0.6.0",
activator_http: "0.6.0",
activator_kafka: "0.6.0",
activator_pubsub: "0.6.0",
activator_rabbitmq: "0.6.0",
activator_sqs: "0.6.0",
proxy: "0.6.0",
spawn_operator: "0.6.0"
]

@doc """
Expand Down
2 changes: 1 addition & 1 deletion spawn_activators/activator_grpc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ by adding `activator_grpc` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:activator_grpc, "~> 0.5.5"}
{:activator_grpc, "~> 0.6.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion spawn_activators/activator_http/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ by adding `activator_http` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:activator_http, "~> 0.5.5"}
{:activator_http, "~> 0.6.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion spawn_operator/spawn_operator/config/config.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Config

config :spawn_operator,
proxy_image: "docker.io/eigr/spawn-proxy:0.5.5"
proxy_image: "docker.io/eigr/spawn-proxy:0.6.0"

config :bonny,
# Add each Controller module for this operator to load here
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ defmodule Mix.Tasks.Bonny.Gen.Manifest.SpawnOperatorCustomizer do
valueFrom: %{fieldRef: %{fieldPath: "spec.serviceAccountName"}}
}
],
image: "eigr/spawn-operator:0.5.5",
image: "eigr/spawn-operator:0.6.0",
name: "spawn-operator",
resources: %{
limits: %{cpu: "200m", memory: "200Mi"},
Expand Down
2 changes: 1 addition & 1 deletion spawn_operator/spawn_operator/lib/spawn_operator.ex
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ defmodule SpawnOperator do
Map.get(
annotations,
"spawn-eigr.io/sidecar-image-tag",
"docker.io/eigr/spawn-proxy:0.5.5"
"docker.io/eigr/spawn-proxy:0.6.0"
),
proxy_uds_enabled: Map.get(annotations, "spawn-eigr.io/sidecar-uds-enabled", "false"),
proxy_uds_address:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ defmodule SpawnOperator.Handler.ActorHostHandler do
spawn-eigr.io.sidecar.containerImage: "docker.io/eigr/spawn-proxy"
# Optional
spawn-eigr.io.sidecar.containerVersion: "0.5.5"
spawn-eigr.io.sidecar.containerVersion: "0.6.0"
# Optional. Default 9001
spawn-eigr.io.sidecar.httpPort: 9001
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ defmodule SpawnOperator.K8s.Proxy.CM.Configmap do
spawn-eigr.io/sidecar-mode: "sidecar"
# Optional
spawn-eigr.io/sidecar-image-tag: "docker.io/eigr/spawn-proxy:0.5.5"
spawn-eigr.io/sidecar-image-tag: "docker.io/eigr/spawn-proxy:0.6.0"
# Optional. Default 9001
spawn-eigr.io/sidecar-http-port: "9001"
Expand Down
2 changes: 1 addition & 1 deletion spawn_operator/spawn_operator/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.name
image: eigr/spawn-operator:0.5.5
image: eigr/spawn-operator:0.6.0
imagePullPolicy: IfNotPresent
name: spawn-operator
resources:
Expand Down
12 changes: 6 additions & 6 deletions spawn_sdk/spawn_sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ by adding `spawn_sdk` and `spawn_statestores_*` to your list of dependencies in
```elixir
def deps do
[
{:spawn_sdk, "~> 0.5.5"},
{:spawn_sdk, "~> 0.6.0"},

# You can uncomment one of those dependencies if you are going to use Persistent Actors
#{:spawn_statestores_mysql, "~> 0.5.5"},
#{:spawn_statestores_postgres, "~> 0.5.5"},
#{:spawn_statestores_mssql, "~> 0.5.5"},
#{:spawn_statestores_cockroachdb, "~> 0.5.5"},
#{:spawn_statestores_sqlite, "~> 0.5.5"},
#{:spawn_statestores_mysql, "~> 0.6.0"},
#{:spawn_statestores_postgres, "~> 0.6.0"},
#{:spawn_statestores_mssql, "~> 0.6.0"},
#{:spawn_statestores_cockroachdb, "~> 0.6.0"},
#{:spawn_statestores_sqlite, "~> 0.6.0"},
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion spawn_sdk/spawn_sdk_example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ by adding `spawn_sdk_example` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:spawn_sdk_example, "~> 0.5.5"}
{:spawn_sdk_example, "~> 0.6.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion spawn_statestores/statestores/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ by adding `statestores` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:spawn_statestores, "~> 0.5.5"}
{:spawn_statestores, "~> 0.6.0"}
]
end
```
Expand Down

0 comments on commit 8061d77

Please sign in to comment.