-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
akka-management の conf を切り出して、akka-management を使用する場合のみ明示的に akka-mana…
…gement の設定を適応できるように修正
- Loading branch information
1 parent
0768b55
commit ebdd13d
Showing
4 changed files
with
29 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
include "persistence_docker-compose.conf" | ||
|
||
til-akka-typed.use-akka-management = true | ||
|
||
akka { | ||
cluster.shutdown-after-unsuccessful-join-seed-nodes = 60s | ||
|
||
management { | ||
cluster.bootstrap { | ||
contact-point-discovery { | ||
discovery-method = kubernetes-api | ||
required-contact-point-nr = 0 | ||
required-contact-point-nr = ${?REQUIRED_CONTACT_POINT_NR} | ||
} | ||
} | ||
health-checks { | ||
readiness-checks { | ||
example-ready = "com.kuramapommel.til_akka_typed.HealthChecker" | ||
} | ||
} | ||
} | ||
|
||
coordinated-shutdown.exit-jvm = on | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters