Skip to content

Commit

Permalink
Only start API by the Elected Leader (#875)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
  • Loading branch information
dvaldivia committed Oct 18, 2021
1 parent afbf880 commit 40411db
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 35 deletions.
45 changes: 45 additions & 0 deletions pkg/apis/minio.min.io/v2/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

68 changes: 33 additions & 35 deletions pkg/controller/cluster/main-controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -346,42 +346,41 @@ func getSecretForTenant(tenant *miniov2.Tenant, accessKey, secretKey string) *v1
// is closed, at which point it will shutdown the workqueue and wait for
// workers to finish processing their current work items.
func (c *Controller) Start(threadiness int, stopCh <-chan struct{}) error {
// we need to make sure the API is ready before starting operator
apiWillStart := make(chan interface{})

go func() {

// Request kubernetes version from Kube ApiServer
c.getKubeAPIServerVersion()

if isOperatorTLS() {
publicCertPath, publicKeyPath := c.generateTLSCert()
klog.Infof("Starting HTTPS api server")
close(apiWillStart)
// use those certificates to configure the web server
if err := c.ws.ListenAndServeTLS(publicCertPath, publicKeyPath); err != http.ErrServerClosed {
klog.Infof("HTTPS server ListenAndServeTLS failed: %v", err)
panic(err)
}
} else {
klog.Infof("Starting HTTP api server")
close(apiWillStart)
// start server without TLS
if err := c.ws.ListenAndServe(); err != http.ErrServerClosed {
klog.Infof("HTTP server ListenAndServe failed: %v", err)
panic(err)
// Start the API and the Controller, but only if this pod is the leader
run := func(ctx context.Context) {
// we need to make sure the API is ready before starting operator
apiWillStart := make(chan interface{})

go func() {

// Request kubernetes version from Kube ApiServer
c.getKubeAPIServerVersion()

if isOperatorTLS() {
publicCertPath, publicKeyPath := c.generateTLSCert()
klog.Infof("Starting HTTPS API server")
close(apiWillStart)
// use those certificates to configure the web server
if err := c.ws.ListenAndServeTLS(publicCertPath, publicKeyPath); err != http.ErrServerClosed {
klog.Infof("HTTPS server ListenAndServeTLS failed: %v", err)
panic(err)
}
} else {
klog.Infof("Starting HTTP API server")
close(apiWillStart)
// start server without TLS
if err := c.ws.ListenAndServe(); err != http.ErrServerClosed {
klog.Infof("HTTP server ListenAndServe failed: %v", err)
panic(err)
}
}
}
}()

klog.Info("Waiting for API to start")
<-apiWillStart
}()

// Start the informer factories to begin populating the informer caches
klog.Info("Starting Tenant controller")
klog.Info("Waiting for API to start")
<-apiWillStart

run := func(ctx context.Context) {
klog.Info("Controller loop...")
// Start the informer factories to begin populating the informer caches
klog.Info("Starting Tenant controller")

// Wait for the caches to be synced before starting workers
klog.Info("Waiting for informer caches to sync")
Expand Down Expand Up @@ -451,8 +450,7 @@ func (c *Controller) Start(threadiness int, stopCh <-chan struct{}) error {
RetryPeriod: 5 * time.Second,
Callbacks: leaderelection.LeaderCallbacks{
OnStartedLeading: func(ctx context.Context) {
// we're notified when we start - this is where you would
// usually put your code
// start the controller + API code
run(ctx)
},
OnStoppedLeading: func() {
Expand Down

0 comments on commit 40411db

Please sign in to comment.