284 lines
6.4 KiB
Go
284 lines
6.4 KiB
Go
/*
|
|
|
|
Copyright 2019 The KubeSphere 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 nodes
|
|
|
|
import (
|
|
"fmt"
|
|
"kubesphere.io/kubesphere/pkg/simple/client/k8s"
|
|
"math"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/golang/glog"
|
|
"k8s.io/api/apps/v1beta2"
|
|
"k8s.io/api/core/v1"
|
|
policy "k8s.io/api/policy/v1beta1"
|
|
apierrors "k8s.io/apimachinery/pkg/api/errors"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/types"
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
|
)
|
|
|
|
func DrainNode(nodename string) (err error) {
|
|
|
|
k8sclient := k8s.Client()
|
|
node, err := k8sclient.CoreV1().Nodes().Get(nodename, metav1.GetOptions{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if node.Spec.Unschedulable {
|
|
return fmt.Errorf("node %s have been drained", nodename)
|
|
}
|
|
|
|
data := []byte(" {\"spec\":{\"unschedulable\":true}}")
|
|
nodestatus, err := k8sclient.CoreV1().Nodes().Patch(nodename, types.StrategicMergePatchType, data)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
glog.Info(nodestatus)
|
|
donech := make(chan bool)
|
|
errch := make(chan error)
|
|
go drainEviction(nodename, donech, errch)
|
|
for {
|
|
select {
|
|
case err := <-errch:
|
|
return err
|
|
case <-donech:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
func drainEviction(nodename string, donech chan bool, errch chan error) {
|
|
|
|
k8sclient := k8s.Client()
|
|
var options metav1.ListOptions
|
|
pods := make([]v1.Pod, 0)
|
|
options.FieldSelector = "spec.nodeName=" + nodename
|
|
podList, err := k8sclient.CoreV1().Pods("").List(options)
|
|
if err != nil {
|
|
glog.Fatal(err)
|
|
errch <- err
|
|
}
|
|
options.FieldSelector = ""
|
|
daemonsetList, err := k8sclient.AppsV1beta2().DaemonSets("").List(options)
|
|
|
|
if err != nil {
|
|
|
|
glog.Fatal(err)
|
|
errch <- err
|
|
|
|
}
|
|
// remove mirror pod static pod
|
|
if len(podList.Items) > 0 {
|
|
|
|
for _, pod := range podList.Items {
|
|
|
|
if !containDaemonset(pod, *daemonsetList) {
|
|
//static or mirror pod
|
|
if isStaticPod(&pod) || isMirrorPod(&pod) {
|
|
continue
|
|
} else {
|
|
pods = append(pods, pod)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if len(pods) == 0 {
|
|
donech <- true
|
|
} else {
|
|
|
|
//create eviction
|
|
getPodFn := func(namespace, name string) (*v1.Pod, error) {
|
|
k8sclient := k8s.Client()
|
|
return k8sclient.CoreV1().Pods(namespace).Get(name, metav1.GetOptions{})
|
|
}
|
|
evicerr := evictPods(pods, 0, getPodFn)
|
|
|
|
if evicerr == nil {
|
|
donech <- true
|
|
} else {
|
|
glog.Fatal(evicerr)
|
|
errch <- err
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func getPodSource(pod *v1.Pod) (string, error) {
|
|
if pod.Annotations != nil {
|
|
if source, ok := pod.Annotations["kubernetes.io/config.source"]; ok {
|
|
return source, nil
|
|
}
|
|
}
|
|
return "", fmt.Errorf("cannot get source of pod %q", pod.UID)
|
|
}
|
|
|
|
func isStaticPod(pod *v1.Pod) bool {
|
|
source, err := getPodSource(pod)
|
|
return err == nil && source != "api"
|
|
}
|
|
|
|
func isMirrorPod(pod *v1.Pod) bool {
|
|
_, ok := pod.Annotations[v1.MirrorPodAnnotationKey]
|
|
return ok
|
|
}
|
|
|
|
func containDaemonset(pod v1.Pod, daemonsetList v1beta2.DaemonSetList) bool {
|
|
|
|
flag := false
|
|
for _, daemonset := range daemonsetList.Items {
|
|
|
|
if strings.Contains(pod.Name, daemonset.Name) {
|
|
|
|
flag = true
|
|
}
|
|
|
|
}
|
|
return flag
|
|
|
|
}
|
|
|
|
func evictPod(pod v1.Pod, GracePeriodSeconds int) error {
|
|
|
|
k8sclient := k8s.Client()
|
|
deleteOptions := &metav1.DeleteOptions{}
|
|
if GracePeriodSeconds >= 0 {
|
|
gracePeriodSeconds := int64(GracePeriodSeconds)
|
|
deleteOptions.GracePeriodSeconds = &gracePeriodSeconds
|
|
}
|
|
|
|
var eviction policy.Eviction
|
|
eviction.Kind = "Eviction"
|
|
eviction.APIVersion = "policy/v1beta1"
|
|
eviction.Namespace = pod.Namespace
|
|
eviction.Name = pod.Name
|
|
eviction.DeleteOptions = deleteOptions
|
|
err := k8sclient.CoreV1().Pods(pod.Namespace).Evict(&eviction)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func evictPods(pods []v1.Pod, GracePeriodSeconds int, getPodFn func(namespace, name string) (*v1.Pod, error)) error {
|
|
doneCh := make(chan bool, len(pods))
|
|
errCh := make(chan error, 1)
|
|
|
|
for _, pod := range pods {
|
|
go func(pod v1.Pod, doneCh chan bool, errCh chan error) {
|
|
var err error
|
|
var count int
|
|
for {
|
|
err = evictPod(pod, GracePeriodSeconds)
|
|
if err == nil {
|
|
count++
|
|
if count > 2 {
|
|
break
|
|
} else {
|
|
continue
|
|
}
|
|
} else if apierrors.IsNotFound(err) {
|
|
count = 0
|
|
doneCh <- true
|
|
glog.Info(fmt.Sprintf("pod %s evict", pod.Name))
|
|
return
|
|
} else if apierrors.IsTooManyRequests(err) {
|
|
count = 0
|
|
time.Sleep(5 * time.Second)
|
|
} else {
|
|
count = 0
|
|
errCh <- fmt.Errorf("error when evicting pod %q: %v", pod.Name, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
podArray := []v1.Pod{pod}
|
|
_, err = waitForDelete(podArray, time.Second, time.Duration(math.MaxInt64), getPodFn)
|
|
if err == nil {
|
|
doneCh <- true
|
|
glog.Info(fmt.Sprintf("pod %s delete", pod.Name))
|
|
} else {
|
|
errCh <- fmt.Errorf("error when waiting for pod %q terminating: %v", pod.Name, err)
|
|
}
|
|
}(pod, doneCh, errCh)
|
|
}
|
|
|
|
Timeout := 300 * power(10, 9)
|
|
doneCount := 0
|
|
// 0 timeout means infinite, we use MaxInt64 to represent it.
|
|
var globalTimeout time.Duration
|
|
if Timeout == 0 {
|
|
globalTimeout = time.Duration(math.MaxInt64)
|
|
} else {
|
|
globalTimeout = time.Duration(Timeout)
|
|
}
|
|
for {
|
|
select {
|
|
case err := <-errCh:
|
|
return err
|
|
case <-doneCh:
|
|
doneCount++
|
|
if doneCount == len(pods) {
|
|
return nil
|
|
}
|
|
case <-time.After(globalTimeout):
|
|
return fmt.Errorf("drain did not complete within %v", globalTimeout)
|
|
}
|
|
}
|
|
}
|
|
|
|
func waitForDelete(pods []v1.Pod, interval, timeout time.Duration, getPodFn func(string, string) (*v1.Pod, error)) ([]v1.Pod, error) {
|
|
|
|
err := wait.PollImmediate(interval, timeout, func() (bool, error) {
|
|
var pendingPods []v1.Pod
|
|
for i, pod := range pods {
|
|
p, err := getPodFn(pod.Namespace, pod.Name)
|
|
if apierrors.IsNotFound(err) || (p != nil && p.ObjectMeta.UID != pod.ObjectMeta.UID) {
|
|
continue
|
|
} else if err != nil {
|
|
return false, err
|
|
} else {
|
|
pendingPods = append(pendingPods, pods[i])
|
|
}
|
|
}
|
|
pods = pendingPods
|
|
if len(pendingPods) > 0 {
|
|
return false, nil
|
|
}
|
|
return true, nil
|
|
})
|
|
return pods, err
|
|
}
|
|
|
|
func power(x int64, n int) int64 {
|
|
|
|
var res int64 = 1
|
|
for n != 0 {
|
|
res *= x
|
|
n--
|
|
}
|
|
|
|
return res
|
|
|
|
}
|