-
Notifications
You must be signed in to change notification settings - Fork 150
NewServiceSyncController #305
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
benjaminapetersen
merged 1 commit into
openshift:master
from
benjaminapetersen:controllers/service
Oct 22, 2019
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,162 @@ | ||
| package service | ||
|
|
||
| import ( | ||
| "fmt" | ||
| "time" | ||
|
|
||
| metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
| "k8s.io/apimachinery/pkg/util/runtime" | ||
| "k8s.io/apimachinery/pkg/util/wait" | ||
| coreinformersv1 "k8s.io/client-go/informers/core/v1" | ||
| coreclientv1 "k8s.io/client-go/kubernetes/typed/core/v1" | ||
| "k8s.io/client-go/tools/cache" | ||
| "k8s.io/client-go/util/workqueue" | ||
| "k8s.io/klog" | ||
|
|
||
| operatorsv1 "github.com/openshift/api/operator/v1" | ||
| operatorclientv1 "github.com/openshift/client-go/operator/clientset/versioned/typed/operator/v1" | ||
| "github.com/openshift/console-operator/pkg/api" | ||
| "github.com/openshift/console-operator/pkg/console/status" | ||
| "github.com/openshift/console-operator/pkg/console/subresource/service" | ||
| "github.com/openshift/library-go/pkg/operator/events" | ||
| "github.com/openshift/library-go/pkg/operator/resource/resourceapply" | ||
| ) | ||
|
|
||
| const ( | ||
| // key is basically irrelevant | ||
| controllerWorkQueueKey = "service-sync-work-queue-key" | ||
| controllerName = "ConsoleServiceSyncController" | ||
| ) | ||
|
|
||
| // ctrl just needs the clients so it can make requests | ||
| // the informers will automatically notify it of changes | ||
| // and kick the sync loop | ||
| type ServiceSyncController struct { | ||
| operatorConfigClient operatorclientv1.ConsoleInterface | ||
| // live clients, we dont need listers w/caches | ||
| serviceClient coreclientv1.ServicesGetter | ||
| // names | ||
| targetNamespace string | ||
| serviceName string | ||
| // events | ||
| cachesToSync []cache.InformerSynced | ||
| queue workqueue.RateLimitingInterface | ||
| recorder events.Recorder | ||
| } | ||
|
|
||
| // factory func needs clients and informers | ||
| // informers to start them up, clients to pass | ||
| func NewServiceSyncController( | ||
| operatorConfigClient operatorclientv1.ConsoleInterface, | ||
| corev1Client coreclientv1.CoreV1Interface, | ||
| serviceInformer coreinformersv1.ServiceInformer, | ||
| // names | ||
| targetNamespace string, | ||
| serviceName string, | ||
| // events | ||
| recorder events.Recorder, | ||
| ) *ServiceSyncController { | ||
|
|
||
| corev1Client.Services(targetNamespace) | ||
|
|
||
| ctrl := &ServiceSyncController{ | ||
| operatorConfigClient: operatorConfigClient, | ||
| serviceClient: corev1Client, | ||
| // names | ||
| targetNamespace: targetNamespace, | ||
| serviceName: serviceName, | ||
| // events | ||
| recorder: recorder, | ||
| cachesToSync: nil, | ||
| queue: workqueue.NewNamedRateLimitingQueue(workqueue.DefaultControllerRateLimiter(), controllerName), | ||
| } | ||
|
|
||
| serviceInformer.Informer().AddEventHandler(ctrl.newEventHandler()) | ||
| ctrl.cachesToSync = append(ctrl.cachesToSync, | ||
| serviceInformer.Informer().HasSynced, | ||
| ) | ||
|
|
||
| return ctrl | ||
| } | ||
|
|
||
| func (c *ServiceSyncController) sync() error { | ||
| startTime := time.Now() | ||
| klog.V(4).Infof("started syncing service %q (%v)", c.serviceName, startTime) | ||
| defer klog.V(4).Infof("finished syncing service %q (%v)", c.serviceName, time.Since(startTime)) | ||
|
|
||
| operatorConfig, err := c.operatorConfigClient.Get(api.ConfigResourceName, metav1.GetOptions{}) | ||
| if err != nil { | ||
| return err | ||
| } | ||
|
|
||
| switch operatorConfig.Spec.ManagementState { | ||
| case operatorsv1.Managed: | ||
| klog.V(4).Infoln("console is in a managed state: syncing service") | ||
| case operatorsv1.Unmanaged: | ||
| klog.V(4).Infoln("console is in an unmanaged state: skipping service sync") | ||
| return nil | ||
| case operatorsv1.Removed: | ||
| klog.V(4).Infoln("console is in a removed state: deleting service") | ||
| return c.removeService() | ||
| default: | ||
| return fmt.Errorf("unknown state: %v", operatorConfig.Spec.ManagementState) | ||
| } | ||
|
|
||
| updatedOperatorConfig := operatorConfig.DeepCopy() | ||
| _, _, svcErr := resourceapply.ApplyService(c.serviceClient, c.recorder, service.DefaultService(nil)) | ||
| status.HandleProgressingOrDegraded(updatedOperatorConfig, "ServiceSync", "FailedApply", svcErr) | ||
| status.SyncStatus(c.operatorConfigClient, updatedOperatorConfig) | ||
|
|
||
| return svcErr | ||
| } | ||
|
|
||
| func (c *ServiceSyncController) removeService() error { | ||
| klog.V(2).Info("deleting console service") | ||
| defer klog.V(2).Info("finished deleting console service") | ||
| return c.serviceClient.Services(c.targetNamespace).Delete(service.Stub().Name, &metav1.DeleteOptions{}) | ||
| } | ||
|
|
||
| // boilerplate, since this controller is not making use of monis.app/go boilerplate | ||
| func (c *ServiceSyncController) Run(workers int, stopCh <-chan struct{}) { | ||
| defer runtime.HandleCrash() | ||
| defer c.queue.ShutDown() | ||
| klog.Infof("starting %v", controllerName) | ||
| defer klog.Infof("shutting down %v", controllerName) | ||
| if !cache.WaitForCacheSync(stopCh, c.cachesToSync...) { | ||
| klog.Infoln("caches did not sync") | ||
| runtime.HandleError(fmt.Errorf("caches did not sync")) | ||
| return | ||
benjaminapetersen marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
| // only start one worker | ||
| go wait.Until(c.runWorker, time.Second, stopCh) | ||
| <-stopCh | ||
| } | ||
|
|
||
| func (c *ServiceSyncController) runWorker() { | ||
| for c.processNextWorkItem() { | ||
| } | ||
| } | ||
|
|
||
| func (c *ServiceSyncController) processNextWorkItem() bool { | ||
| processKey, quit := c.queue.Get() | ||
| if quit { | ||
| return false | ||
| } | ||
| defer c.queue.Done(processKey) | ||
| err := c.sync() | ||
| if err == nil { | ||
| c.queue.Forget(processKey) | ||
| return true | ||
| } | ||
| runtime.HandleError(fmt.Errorf("%v failed with : %v", processKey, err)) | ||
| c.queue.AddRateLimited(processKey) | ||
| return true | ||
| } | ||
|
|
||
| func (c *ServiceSyncController) newEventHandler() cache.ResourceEventHandler { | ||
| return cache.ResourceEventHandlerFuncs{ | ||
| AddFunc: func(obj interface{}) { c.queue.Add(controllerWorkQueueKey) }, | ||
| UpdateFunc: func(old, new interface{}) { c.queue.Add(controllerWorkQueueKey) }, | ||
| DeleteFunc: func(obj interface{}) { c.queue.Add(controllerWorkQueueKey) }, | ||
| } | ||
| } | ||
This file contains hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.