From 8a21f750cfa1324d8387997d97562c1694a582e4 Mon Sep 17 00:00:00 2001 From: Sebastian Widmer Date: Tue, 23 Aug 2022 08:38:26 +0200 Subject: [PATCH] Fix dummy domain from bootstrapping --- config/manager/controller_manager_config.yaml | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/manager/controller_manager_config.yaml b/config/manager/controller_manager_config.yaml index 14a53e9..9225ef1 100644 --- a/config/manager/controller_manager_config.yaml +++ b/config/manager/controller_manager_config.yaml @@ -8,7 +8,7 @@ webhook: port: 9443 leaderElection: leaderElect: true - resourceName: c8138e14.my.domain + resourceName: c8138e14.appuio.io # leaderElectionReleaseOnCancel defines if the leader should step down volume # when the Manager ends. This requires the binary to immediately end when the # Manager is stopped, otherwise, this setting is unsafe. Setting this significantly diff --git a/main.go b/main.go index 2cb349c..4e97f6d 100644 --- a/main.go +++ b/main.go @@ -71,7 +71,7 @@ func main() { Port: 9443, HealthProbeBindAddress: probeAddr, LeaderElection: enableLeaderElection, - LeaderElectionID: "c8138e14.my.domain", + LeaderElectionID: "c8138e14.appuio.io", // LeaderElectionReleaseOnCancel defines if the leader should step down voluntarily // when the Manager ends. This requires the binary to immediately end when the // Manager is stopped, otherwise, this setting is unsafe. Setting this significantly