File tree 3 files changed +10
-6
lines changed
spawn_monitor/lib/spawn_monitor
spawn_operator/spawn_operator/lib/spawn_operator/k8s/proxy
3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ defmodule Spawn.Cluster.ClusterSupervisor do
97
97
strategy: Elixir.Cluster.Strategy.Kubernetes.DNS ,
98
98
config: [
99
99
service: Config . get ( :proxy_headless_service ) ,
100
- application_name: Config . get ( :app_name ) ,
100
+ application_name: Config . get ( :actor_system_name ) ,
101
101
polling_interval: Config . get ( :proxy_cluster_polling_interval )
102
102
]
103
103
]
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ defmodule SpawnMonitor.Cluster do
72
72
strategy: Cluster.Strategy.Kubernetes.DNS ,
73
73
config: [
74
74
service: env ( "PROXY_HEADLESS_SERVICE" , "proxy-headless" ) ,
75
- application_name: env ( "PROXY_APP_NAME " , "proxy" ) ,
75
+ application_name: env ( "PROXY_ACTOR_SYSTEM_NAME " , "proxy" ) ,
76
76
polling_interval: polling_interval
77
77
]
78
78
]
Original file line number Diff line number Diff line change @@ -6,10 +6,6 @@ defmodule SpawnOperator.K8s.Proxy.Deployment do
6
6
@ behaviour SpawnOperator.K8s.Manifest
7
7
8
8
@ default_actor_host_function_env [
9
- % {
10
- "name" => "RELEASE_NAME" ,
11
- "value" => "proxy"
12
- } ,
13
9
% {
14
10
"name" => "NAMESPACE" ,
15
11
"valueFrom" => % { "fieldRef" => % { "fieldPath" => "metadata.namespace" } }
@@ -282,6 +278,10 @@ defmodule SpawnOperator.K8s.Proxy.Deployment do
282
278
updated_default_envs =
283
279
@ default_actor_host_function_env ++
284
280
[
281
+ % {
282
+ "name" => "RELEASE_NAME" ,
283
+ "value" => system
284
+ } ,
285
285
% {
286
286
"name" => "RELEASE_COOKIE" ,
287
287
"valueFrom" => % {
@@ -358,6 +358,10 @@ defmodule SpawnOperator.K8s.Proxy.Deployment do
358
358
updated_default_envs =
359
359
@ default_actor_host_function_env ++
360
360
[
361
+ % {
362
+ "name" => "RELEASE_NAME" ,
363
+ "value" => system
364
+ } ,
361
365
% {
362
366
"name" => "RELEASE_COOKIE" ,
363
367
"valueFrom" => % {
You can’t perform that action at this time.
0 commit comments