Skip to content

Commit

Permalink
Feat. Added tags and metadata support
Browse files Browse the repository at this point in the history
  • Loading branch information
sleipnir committed Jan 19, 2023
1 parent b24ec90 commit bdbba18
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 23 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.11
version=0.5.0-rc.12
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.11
image: eigr/spawn-operator:0.5.0-rc.12
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.11
image: eigr/spawn-proxy:0.5.0-rc.12
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.11
spawn-eigr.io/controller.version: 0.5.0-rc.12
name: spawn-proxy-test
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.11",
spawn_statestores_mysql: "0.5.0-rc.11",
spawn_statestores_mssql: "0.5.0-rc.11",
spawn_statestores_postgres: "0.5.0-rc.11",
spawn_statestores_sqlite: "0.5.0-rc.11",
spawn_statestores_cockroachdb: "0.5.0-rc.11",
spawn: "0.5.0-rc.11",
spawn_sdk: "0.5.0-rc.11",
activator: "0.5.0-rc.11",
activator_grpc: "0.5.0-rc.11",
activator_http: "0.5.0-rc.11",
activator_kafka: "0.5.0-rc.11",
activator_pubsub: "0.5.0-rc.11",
activator_rabbitmq: "0.5.0-rc.11",
activator_sqs: "0.5.0-rc.11",
proxy: "0.5.0-rc.11"
spawn_statestores: "0.5.0-rc.12",
spawn_statestores_mysql: "0.5.0-rc.12",
spawn_statestores_mssql: "0.5.0-rc.12",
spawn_statestores_postgres: "0.5.0-rc.12",
spawn_statestores_sqlite: "0.5.0-rc.12",
spawn_statestores_cockroachdb: "0.5.0-rc.12",
spawn: "0.5.0-rc.12",
spawn_sdk: "0.5.0-rc.12",
activator: "0.5.0-rc.12",
activator_grpc: "0.5.0-rc.12",
activator_http: "0.5.0-rc.12",
activator_kafka: "0.5.0-rc.12",
activator_pubsub: "0.5.0-rc.12",
activator_rabbitmq: "0.5.0-rc.12",
activator_sqs: "0.5.0-rc.12",
proxy: "0.5.0-rc.12"
]

@doc """
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.0-rc.11"
proxy_image: "docker.io/eigr/spawn-proxy:0.5.0-rc.12"

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 @@ -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.11"
"docker.io/eigr/spawn-proxy:0.5.0-rc.12"
)
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.11
image: eigr/spawn-operator:0.5.0-rc.12
name: spawn-operator
resources:
limits:
Expand Down

0 comments on commit bdbba18

Please sign in to comment.