Skip to content

Commit 4d167e9

Browse files
authored
Merge pull request #417 from eigr/feat/add-monitor-app
fix: system cluster connection
2 parents 7d03f44 + 1864ccf commit 4d167e9

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

lib/spawn/cluster/cluster_supervisor.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ defmodule Spawn.Cluster.ClusterSupervisor do
9797
strategy: Elixir.Cluster.Strategy.Kubernetes.DNS,
9898
config: [
9999
service: Config.get(:proxy_headless_service),
100-
application_name: Config.get(:app_name),
100+
application_name: Config.get(:actor_system_name),
101101
polling_interval: Config.get(:proxy_cluster_polling_interval)
102102
]
103103
]

spawn_monitor/lib/spawn_monitor/cluster.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ defmodule SpawnMonitor.Cluster do
7272
strategy: Cluster.Strategy.Kubernetes.DNS,
7373
config: [
7474
service: env("PROXY_HEADLESS_SERVICE", "proxy-headless"),
75-
application_name: env("PROXY_APP_NAME", "proxy"),
75+
application_name: env("PROXY_ACTOR_SYSTEM_NAME", "proxy"),
7676
polling_interval: polling_interval
7777
]
7878
]

spawn_operator/spawn_operator/lib/spawn_operator/k8s/proxy/deployment.ex

+8-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ defmodule SpawnOperator.K8s.Proxy.Deployment do
66
@behaviour SpawnOperator.K8s.Manifest
77

88
@default_actor_host_function_env [
9-
%{
10-
"name" => "RELEASE_NAME",
11-
"value" => "proxy"
12-
},
139
%{
1410
"name" => "NAMESPACE",
1511
"valueFrom" => %{"fieldRef" => %{"fieldPath" => "metadata.namespace"}}
@@ -282,6 +278,10 @@ defmodule SpawnOperator.K8s.Proxy.Deployment do
282278
updated_default_envs =
283279
@default_actor_host_function_env ++
284280
[
281+
%{
282+
"name" => "RELEASE_NAME",
283+
"value" => system
284+
},
285285
%{
286286
"name" => "RELEASE_COOKIE",
287287
"valueFrom" => %{
@@ -358,6 +358,10 @@ defmodule SpawnOperator.K8s.Proxy.Deployment do
358358
updated_default_envs =
359359
@default_actor_host_function_env ++
360360
[
361+
%{
362+
"name" => "RELEASE_NAME",
363+
"value" => system
364+
},
361365
%{
362366
"name" => "RELEASE_COOKIE",
363367
"valueFrom" => %{

0 commit comments

Comments
 (0)