@@ -36,8 +36,8 @@ import (
36
36
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
37
37
"sigs.k8s.io/controller-runtime/pkg/webhook"
38
38
39
- "github.infra.cloudera. com/sscaffidi /istio-proxy-update-controller /internal/controller"
40
- "github.infra.cloudera. com/sscaffidi /istio-proxy-update-controller /internal/util/istiodata"
39
+ "github.com/hercynium /istio-fortsa /internal/controller"
40
+ "github.com/hercynium /istio-fortsa /internal/util/istiodata"
41
41
//+kubebuilder:scaffold:imports
42
42
)
43
43
@@ -106,7 +106,7 @@ func main() {
106
106
WebhookServer : webhookServer ,
107
107
HealthProbeBindAddress : probeAddr ,
108
108
LeaderElection : enableLeaderElection ,
109
- LeaderElectionID : "5f4ac6c8.cloudera .com" ,
109
+ LeaderElectionID : "5f4ac6c8.example .com" ,
110
110
// LeaderElectionReleaseOnCancel defines if the leader should step down voluntarily
111
111
// when the Manager ends. This requires the binary to immediately end when the
112
112
// Manager is stopped, otherwise, this setting is unsafe. Setting this significantly
@@ -134,7 +134,7 @@ func main() {
134
134
Scheme : mgr .GetScheme (),
135
135
KubeClient : kubeClient ,
136
136
IstioData : & istioData , // pointer because multiple controllers share the data
137
- Recorder : mgr .GetEventRecorderFor ("istio-proxy-update-controller /webhook-reconciler" ),
137
+ Recorder : mgr .GetEventRecorderFor ("istio-fortsa /webhook-reconciler" ),
138
138
}).SetupWithManager (mgr ); err != nil {
139
139
setupLog .Error (err , "unable to create controller" , "controller" , "MutatingWebhookConfiguration" )
140
140
os .Exit (1 )
@@ -144,7 +144,7 @@ func main() {
144
144
Scheme : mgr .GetScheme (),
145
145
KubeClient : kubeClient ,
146
146
IstioData : & istioData , // pointer because multiple controllers share the data
147
- Recorder : mgr .GetEventRecorderFor ("istio-proxy-update-controller /namespace-reconciler" ),
147
+ Recorder : mgr .GetEventRecorderFor ("istio-fortsa /namespace-reconciler" ),
148
148
}).SetupWithManager (mgr ); err != nil {
149
149
setupLog .Error (err , "unable to create controller" , "controller" , "Namespace" )
150
150
os .Exit (1 )
@@ -154,7 +154,7 @@ func main() {
154
154
Scheme : mgr .GetScheme (),
155
155
KubeClient : kubeClient ,
156
156
IstioData : & istioData , // pointer because multiple controllers share the data
157
- Recorder : mgr .GetEventRecorderFor ("istio-proxy-update-controller /pod-reconciler" ),
157
+ Recorder : mgr .GetEventRecorderFor ("istio-fortsa /pod-reconciler" ),
158
158
}).SetupWithManager (mgr ); err != nil {
159
159
setupLog .Error (err , "unable to create controller" , "controller" , "Pod" )
160
160
os .Exit (1 )
0 commit comments