Skip to content

Commit

Permalink
Some fixes in operator and proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
sleipnir committed Jan 16, 2023
1 parent 8eaaafa commit 8fd96af
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 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.0-rc.8
version=0.5.0-rc.9
registry=eigr

CLUSTER_NAME=spawn-k8s
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.0-rc.8
image: eigr/spawn-operator:0.5.0-rc.9
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.0-rc.8
image: eigr/spawn-proxy:0.5.0-rc.9
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.0-rc.8
spawn-eigr.io/controller.version: 0.5.0-rc.9
name: spawn-proxy-test-svc
namespace: default
spec:
Expand Down
32 changes: 16 additions & 16 deletions priv/internal_versions.exs
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
defmodule InternalVersions do
# The order here is also the deploy order, its important to keep this way
@versions [
spawn_statestores: "0.5.0-rc.8",
spawn_statestores_mysql: "0.5.0-rc.8",
spawn_statestores_mssql: "0.5.0-rc.8",
spawn_statestores_postgres: "0.5.0-rc.8",
spawn_statestores_sqlite: "0.5.0-rc.8",
spawn_statestores_cockroachdb: "0.5.0-rc.8",
spawn: "0.5.0-rc.8",
spawn_sdk: "0.5.0-rc.8",
activator: "0.5.0-rc.8",
activator_grpc: "0.5.0-rc.8",
activator_http: "0.5.0-rc.8",
activator_kafka: "0.5.0-rc.8",
activator_pubsub: "0.5.0-rc.8",
activator_rabbitmq: "0.5.0-rc.8",
activator_sqs: "0.5.0-rc.8",
proxy: "0.5.0-rc.8"
spawn_statestores: "0.5.0-rc.9",
spawn_statestores_mysql: "0.5.0-rc.9",
spawn_statestores_mssql: "0.5.0-rc.9",
spawn_statestores_postgres: "0.5.0-rc.9",
spawn_statestores_sqlite: "0.5.0-rc.9",
spawn_statestores_cockroachdb: "0.5.0-rc.9",
spawn: "0.5.0-rc.9",
spawn_sdk: "0.5.0-rc.9",
activator: "0.5.0-rc.9",
activator_grpc: "0.5.0-rc.9",
activator_http: "0.5.0-rc.9",
activator_kafka: "0.5.0-rc.9",
activator_pubsub: "0.5.0-rc.9",
activator_rabbitmq: "0.5.0-rc.9",
activator_sqs: "0.5.0-rc.9",
proxy: "0.5.0-rc.9"
]

@doc """
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,6 @@ defmodule SpawnOperator.K8s.Deployment do
Application.get_env(
:spawn_operator,
:proxy_image,
"docker.io/eigr/spawn-proxy:0.5.0-rc.8"
"docker.io/eigr/spawn-proxy:0.5.0-rc.9"
)
end
2 changes: 1 addition & 1 deletion spawn_operator/spawn_operator/manifest.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.0-rc.8
image: eigr/spawn-operator:0.5.0-rc.9
name: spawn-operator
resources:
limits:
Expand Down

0 comments on commit 8fd96af

Please sign in to comment.