-
Notifications
You must be signed in to change notification settings - Fork 1k
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
add podgroup controller #401
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
/* | ||
Copyright 2019 The Volcano Authors. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package podgroup | ||
|
||
import ( | ||
"github.com/golang/glog" | ||
|
||
"k8s.io/api/core/v1" | ||
"k8s.io/apimachinery/pkg/util/wait" | ||
"k8s.io/client-go/informers" | ||
coreinformers "k8s.io/client-go/informers/core/v1" | ||
"k8s.io/client-go/kubernetes" | ||
corelisters "k8s.io/client-go/listers/core/v1" | ||
"k8s.io/client-go/tools/cache" | ||
"k8s.io/client-go/util/workqueue" | ||
|
||
scheduling "volcano.sh/volcano/pkg/apis/scheduling/v1alpha2" | ||
kbver "volcano.sh/volcano/pkg/client/clientset/versioned" | ||
kbinfoext "volcano.sh/volcano/pkg/client/informers/externalversions" | ||
kbinfo "volcano.sh/volcano/pkg/client/informers/externalversions/scheduling/v1alpha2" | ||
kblister "volcano.sh/volcano/pkg/client/listers/scheduling/v1alpha2" | ||
) | ||
|
||
// Controller the Podgroup Controller type | ||
type Controller struct { | ||
kubeClients kubernetes.Interface | ||
kbClients kbver.Interface | ||
|
||
podInformer coreinformers.PodInformer | ||
pgInformer kbinfo.PodGroupInformer | ||
|
||
// A store of pods | ||
podLister corelisters.PodLister | ||
podSynced func() bool | ||
|
||
// A store of podgroups | ||
pgLister kblister.PodGroupLister | ||
pgSynced func() bool | ||
|
||
queue workqueue.RateLimitingInterface | ||
} | ||
|
||
// NewPodgroupController create new Podgroup Controller | ||
func NewPodgroupController( | ||
kubeClient kubernetes.Interface, | ||
kbClient kbver.Interface, | ||
schedulerName string, | ||
) *Controller { | ||
cc := &Controller{ | ||
kubeClients: kubeClient, | ||
kbClients: kbClient, | ||
|
||
queue: workqueue.NewRateLimitingQueue(workqueue.DefaultControllerRateLimiter()), | ||
} | ||
|
||
factory := informers.NewSharedInformerFactory(cc.kubeClients, 0) | ||
cc.podInformer = factory.Core().V1().Pods() | ||
cc.podLister = cc.podInformer.Lister() | ||
cc.podSynced = cc.podInformer.Informer().HasSynced | ||
cc.podInformer.Informer().AddEventHandler( | ||
cache.FilteringResourceEventHandler{ | ||
FilterFunc: func(obj interface{}) bool { | ||
switch obj.(type) { | ||
case *v1.Pod: | ||
pod := obj.(*v1.Pod) | ||
if pod.Spec.SchedulerName == schedulerName && | ||
(pod.Annotations == nil || pod.Annotations[scheduling.GroupNameAnnotationKey] == "") { | ||
return true | ||
} | ||
return false | ||
default: | ||
return false | ||
} | ||
}, | ||
Handler: cache.ResourceEventHandlerFuncs{ | ||
AddFunc: cc.addPod, | ||
}, | ||
}) | ||
|
||
cc.pgInformer = kbinfoext.NewSharedInformerFactory(cc.kbClients, 0).Scheduling().V1alpha2().PodGroups() | ||
cc.pgLister = cc.pgInformer.Lister() | ||
cc.pgSynced = cc.pgInformer.Informer().HasSynced | ||
|
||
return cc | ||
} | ||
|
||
// Run start NewPodgroupController | ||
func (cc *Controller) Run(stopCh <-chan struct{}) { | ||
go cc.podInformer.Informer().Run(stopCh) | ||
go cc.pgInformer.Informer().Run(stopCh) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We donot need Run informers separately as sharedInformers Start will Run the informers created from informer factory. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same happens to other controllers There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
cache.WaitForCacheSync(stopCh, cc.podSynced, cc.pgSynced) | ||
|
||
go wait.Until(cc.worker, 0, stopCh) | ||
|
||
glog.Infof("PodgroupController is running ...... ") | ||
} | ||
|
||
func (cc *Controller) worker() { | ||
for cc.processNextReq() { | ||
} | ||
} | ||
|
||
func (cc *Controller) processNextReq() bool { | ||
obj, shutdown := cc.queue.Get() | ||
if shutdown { | ||
glog.Errorf("Fail to pop item from queue") | ||
return false | ||
} | ||
|
||
req := obj.(podRequest) | ||
defer cc.queue.Done(req) | ||
|
||
pod, err := cc.podLister.Pods(req.podNamespace).Get(req.podName) | ||
if err != nil { | ||
glog.Errorf("Failed to get pod by <%v> from cache: %v", req, err) | ||
return true | ||
} | ||
|
||
// normal pod use volcano | ||
if err := cc.createNormalPodPGIfNotExist(pod); err != nil { | ||
glog.Errorf("Failed to handle Pod <%s/%s>: %v", pod.Namespace, pod.Name, err) | ||
cc.queue.AddRateLimited(req) | ||
return true | ||
} | ||
|
||
// If no error, forget it. | ||
cc.queue.Forget(req) | ||
|
||
return true | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
/* | ||
Copyright 2019 The Volcano Authors. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package podgroup | ||
|
||
import ( | ||
"github.com/golang/glog" | ||
|
||
"k8s.io/api/core/v1" | ||
apierrors "k8s.io/apimachinery/pkg/api/errors" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
|
||
vkbatchv1 "volcano.sh/volcano/pkg/apis/batch/v1alpha1" | ||
"volcano.sh/volcano/pkg/apis/helpers" | ||
scheduling "volcano.sh/volcano/pkg/apis/scheduling/v1alpha2" | ||
) | ||
|
||
type podRequest struct { | ||
podName string | ||
podNamespace string | ||
} | ||
|
||
func (cc *Controller) addPod(obj interface{}) { | ||
pod, ok := obj.(*v1.Pod) | ||
if !ok { | ||
glog.Errorf("Failed to convert %v to v1.Pod", obj) | ||
return | ||
} | ||
|
||
req := podRequest{ | ||
podName: pod.Name, | ||
podNamespace: pod.Namespace, | ||
} | ||
|
||
cc.queue.Add(req) | ||
} | ||
|
||
func (cc *Controller) updatePodAnnotations(pod *v1.Pod, pgName string) error { | ||
if pod.Annotations == nil { | ||
pod.Annotations = make(map[string]string) | ||
} | ||
if pod.Annotations[scheduling.GroupNameAnnotationKey] == "" { | ||
pod.Annotations[scheduling.GroupNameAnnotationKey] = pgName | ||
} else { | ||
if pod.Annotations[scheduling.GroupNameAnnotationKey] != pgName { | ||
glog.Errorf("normal pod %s/%s annotations %s value is not %s, but %s", pod.Namespace, pod.Name, | ||
scheduling.GroupNameAnnotationKey, pgName, pod.Annotations[scheduling.GroupNameAnnotationKey]) | ||
} | ||
return nil | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. log an error message if |
||
} | ||
|
||
if _, err := cc.kubeClients.CoreV1().Pods(pod.Namespace).Update(pod); err != nil { | ||
glog.Errorf("Failed to update pod <%s/%s>: %v", pod.Namespace, pod.Name, err) | ||
return err | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (cc *Controller) createNormalPodPGIfNotExist(pod *v1.Pod) error { | ||
pgName := generatePodgroupName(pod) | ||
|
||
if _, err := cc.pgLister.PodGroups(pod.Namespace).Get(pgName); err != nil { | ||
if !apierrors.IsNotFound(err) { | ||
glog.Errorf("Failed to get normal PodGroup for Pod <%s/%s>: %v", | ||
pod.Namespace, pod.Name, err) | ||
return err | ||
} | ||
|
||
pg := &scheduling.PodGroup{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Namespace: pod.Namespace, | ||
Name: pgName, | ||
OwnerReferences: newPGOwnerReferences(pod), | ||
}, | ||
Spec: scheduling.PodGroupSpec{ | ||
MinMember: 1, | ||
}, | ||
} | ||
|
||
if _, err := cc.kbClients.SchedulingV1alpha2().PodGroups(pod.Namespace).Create(pg); err != nil { | ||
glog.Errorf("Failed to create normal PodGroup for Pod <%s/%s>: %v", | ||
pod.Namespace, pod.Name, err) | ||
return err | ||
} | ||
} | ||
|
||
return cc.updatePodAnnotations(pod, pgName) | ||
} | ||
|
||
func generatePodgroupName(pod *v1.Pod) string { | ||
pgName := vkbatchv1.PodgroupNamePrefix | ||
|
||
if len(pod.OwnerReferences) != 0 { | ||
for _, ownerReference := range pod.OwnerReferences { | ||
if ownerReference.Controller != nil && *ownerReference.Controller == true { | ||
pgName += string(ownerReference.UID) | ||
return pgName | ||
} | ||
} | ||
} | ||
|
||
pgName += string(pod.UID) | ||
|
||
return pgName | ||
} | ||
|
||
func newPGOwnerReferences(pod *v1.Pod) []metav1.OwnerReference { | ||
if len(pod.OwnerReferences) != 0 { | ||
for _, ownerReference := range pod.OwnerReferences { | ||
if ownerReference.Controller != nil && *ownerReference.Controller == true { | ||
return pod.OwnerReferences | ||
} | ||
} | ||
} | ||
|
||
isController := true | ||
return []metav1.OwnerReference{{ | ||
APIVersion: helpers.JobKind.GroupVersion().String(), | ||
Controller: &isController, | ||
UID: pod.UID, | ||
}} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if start sharedInformer, it's not necessary to start pod informer again.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same thing happens to other controllers