mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-19 16:05:11 +00:00
The mapping of static pod <--> mirror pod UIDs was backwards in a couple places. Fortunately, they canceled each other out. Fixed, and added a test case.
384 lines
13 KiB
Go
384 lines
13 KiB
Go
/*
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
|
|
|
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 status
|
|
|
|
import (
|
|
"reflect"
|
|
"sort"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/golang/glog"
|
|
"k8s.io/kubernetes/pkg/api"
|
|
"k8s.io/kubernetes/pkg/api/errors"
|
|
"k8s.io/kubernetes/pkg/api/unversioned"
|
|
client "k8s.io/kubernetes/pkg/client/unversioned"
|
|
kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
|
|
kubepod "k8s.io/kubernetes/pkg/kubelet/pod"
|
|
kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
|
|
kubeletutil "k8s.io/kubernetes/pkg/kubelet/util"
|
|
"k8s.io/kubernetes/pkg/types"
|
|
"k8s.io/kubernetes/pkg/util"
|
|
)
|
|
|
|
// A wrapper around api.PodStatus that includes a version to enforce that stale pod statuses are
|
|
// not sent to the API server.
|
|
type versionedPodStatus struct {
|
|
status api.PodStatus
|
|
// Monotonically increasing version number (per pod).
|
|
version uint64
|
|
// Pod name & namespace, for sending updates to API server.
|
|
podName string
|
|
podNamespace string
|
|
}
|
|
|
|
type podStatusSyncRequest struct {
|
|
podUID types.UID
|
|
status versionedPodStatus
|
|
}
|
|
|
|
// Updates pod statuses in apiserver. Writes only when new status has changed.
|
|
// All methods are thread-safe.
|
|
type manager struct {
|
|
kubeClient client.Interface
|
|
podManager kubepod.Manager
|
|
// Map from pod UID to sync status of the corresponding pod.
|
|
podStatuses map[types.UID]versionedPodStatus
|
|
podStatusesLock sync.RWMutex
|
|
podStatusChannel chan podStatusSyncRequest
|
|
// Map from (mirror) pod UID to latest status version successfully sent to the API server.
|
|
// apiStatusVersions must only be accessed from the sync thread.
|
|
apiStatusVersions map[types.UID]uint64
|
|
}
|
|
|
|
// status.Manager is the Source of truth for kubelet pod status, and should be kept up-to-date with
|
|
// the latest api.PodStatus. It also syncs updates back to the API server.
|
|
type Manager interface {
|
|
// Start the API server status sync loop.
|
|
Start()
|
|
|
|
// GetPodStatus returns the cached status for the provided pod UID, as well as whether it
|
|
// was a cache hit.
|
|
GetPodStatus(uid types.UID) (api.PodStatus, bool)
|
|
|
|
// SetPodStatus caches updates the cached status for the given pod, and triggers a status update.
|
|
SetPodStatus(pod *api.Pod, status api.PodStatus)
|
|
|
|
// SetContainerReadiness updates the cached container status with the given readiness, and
|
|
// triggers a status update.
|
|
SetContainerReadiness(pod *api.Pod, containerID kubecontainer.ContainerID, ready bool)
|
|
|
|
// TerminatePods resets the container status for the provided pods to terminated and triggers
|
|
// a status update. This function may not enqueue all the provided pods, in which case it will
|
|
// return false
|
|
TerminatePods(pods []*api.Pod) bool
|
|
|
|
// RemoveOrphanedStatuses scans the status cache and removes any entries for pods not included in
|
|
// the provided podUIDs.
|
|
RemoveOrphanedStatuses(podUIDs map[types.UID]bool)
|
|
}
|
|
|
|
const syncPeriod = 10 * time.Second
|
|
|
|
func NewManager(kubeClient client.Interface, podManager kubepod.Manager) Manager {
|
|
return &manager{
|
|
kubeClient: kubeClient,
|
|
podManager: podManager,
|
|
podStatuses: make(map[types.UID]versionedPodStatus),
|
|
podStatusChannel: make(chan podStatusSyncRequest, 1000), // Buffer up to 1000 statuses
|
|
apiStatusVersions: make(map[types.UID]uint64),
|
|
}
|
|
}
|
|
|
|
// isStatusEqual returns true if the given pod statuses are equal, false otherwise.
|
|
// This method sorts container statuses so order does not affect equality.
|
|
func isStatusEqual(oldStatus, status *api.PodStatus) bool {
|
|
sort.Sort(kubetypes.SortedContainerStatuses(status.ContainerStatuses))
|
|
sort.Sort(kubetypes.SortedContainerStatuses(oldStatus.ContainerStatuses))
|
|
|
|
// TODO: More sophisticated equality checking.
|
|
return reflect.DeepEqual(status, oldStatus)
|
|
}
|
|
|
|
func (m *manager) Start() {
|
|
// Don't start the status manager if we don't have a client. This will happen
|
|
// on the master, where the kubelet is responsible for bootstrapping the pods
|
|
// of the master components.
|
|
if m.kubeClient == nil {
|
|
glog.Infof("Kubernetes client is nil, not starting status manager.")
|
|
return
|
|
}
|
|
|
|
glog.Info("Starting to sync pod status with apiserver")
|
|
syncTicker := time.Tick(syncPeriod)
|
|
// syncPod and syncBatch share the same go routine to avoid sync races.
|
|
go util.Forever(func() {
|
|
select {
|
|
case syncRequest := <-m.podStatusChannel:
|
|
m.syncPod(syncRequest.podUID, syncRequest.status)
|
|
case <-syncTicker:
|
|
m.syncBatch()
|
|
}
|
|
}, 0)
|
|
}
|
|
|
|
func (m *manager) GetPodStatus(uid types.UID) (api.PodStatus, bool) {
|
|
m.podStatusesLock.RLock()
|
|
defer m.podStatusesLock.RUnlock()
|
|
status, ok := m.podStatuses[m.podManager.TranslatePodUID(uid)]
|
|
return status.status, ok
|
|
}
|
|
|
|
func (m *manager) SetPodStatus(pod *api.Pod, status api.PodStatus) {
|
|
m.podStatusesLock.Lock()
|
|
defer m.podStatusesLock.Unlock()
|
|
|
|
var oldStatus api.PodStatus
|
|
if cachedStatus, ok := m.podStatuses[pod.UID]; ok {
|
|
oldStatus = cachedStatus.status
|
|
} else if mirrorPod, ok := m.podManager.GetMirrorPodByPod(pod); ok {
|
|
oldStatus = mirrorPod.Status
|
|
} else {
|
|
oldStatus = pod.Status
|
|
}
|
|
|
|
// Set ReadyCondition.LastTransitionTime.
|
|
if readyCondition := api.GetPodReadyCondition(status); readyCondition != nil {
|
|
// Need to set LastTransitionTime.
|
|
lastTransitionTime := unversioned.Now()
|
|
oldReadyCondition := api.GetPodReadyCondition(oldStatus)
|
|
if oldReadyCondition != nil && readyCondition.Status == oldReadyCondition.Status {
|
|
lastTransitionTime = oldReadyCondition.LastTransitionTime
|
|
}
|
|
readyCondition.LastTransitionTime = lastTransitionTime
|
|
}
|
|
|
|
// ensure that the start time does not change across updates.
|
|
if oldStatus.StartTime != nil && !oldStatus.StartTime.IsZero() {
|
|
status.StartTime = oldStatus.StartTime
|
|
} else if status.StartTime.IsZero() {
|
|
// if the status has no start time, we need to set an initial time
|
|
now := unversioned.Now()
|
|
status.StartTime = &now
|
|
}
|
|
|
|
m.updateStatusInternal(pod, status)
|
|
}
|
|
|
|
func (m *manager) SetContainerReadiness(pod *api.Pod, containerID kubecontainer.ContainerID, ready bool) {
|
|
m.podStatusesLock.Lock()
|
|
defer m.podStatusesLock.Unlock()
|
|
|
|
oldStatus, found := m.podStatuses[pod.UID]
|
|
if !found {
|
|
glog.Warningf("Container readiness changed before pod has synced: %q - %q",
|
|
kubeletutil.FormatPodName(pod), containerID.String())
|
|
return
|
|
}
|
|
status := oldStatus.status
|
|
|
|
// Find the container to update.
|
|
containerIndex := -1
|
|
for i, c := range status.ContainerStatuses {
|
|
if c.ContainerID == containerID.String() {
|
|
containerIndex = i
|
|
break
|
|
}
|
|
}
|
|
if containerIndex == -1 {
|
|
glog.Warningf("Container readiness changed for unknown container: %q - %q",
|
|
kubeletutil.FormatPodName(pod), containerID.String())
|
|
return
|
|
}
|
|
|
|
if status.ContainerStatuses[containerIndex].Ready == ready {
|
|
glog.V(4).Infof("Container readiness unchanged (%v): %q - %q", ready,
|
|
kubeletutil.FormatPodName(pod), containerID.String())
|
|
return
|
|
}
|
|
|
|
// Make sure we're not updating the cached version.
|
|
status.ContainerStatuses = make([]api.ContainerStatus, len(status.ContainerStatuses))
|
|
copy(status.ContainerStatuses, oldStatus.status.ContainerStatuses)
|
|
status.ContainerStatuses[containerIndex].Ready = ready
|
|
m.updateStatusInternal(pod, status)
|
|
}
|
|
|
|
func (m *manager) TerminatePods(pods []*api.Pod) bool {
|
|
allSent := true
|
|
m.podStatusesLock.Lock()
|
|
defer m.podStatusesLock.Unlock()
|
|
for _, pod := range pods {
|
|
for i := range pod.Status.ContainerStatuses {
|
|
pod.Status.ContainerStatuses[i].State = api.ContainerState{
|
|
Terminated: &api.ContainerStateTerminated{},
|
|
}
|
|
}
|
|
if sent := m.updateStatusInternal(pod, pod.Status); !sent {
|
|
glog.V(4).Infof("Termination notice for %q was dropped because the status channel is full", kubeletutil.FormatPodName(pod))
|
|
allSent = false
|
|
}
|
|
}
|
|
return allSent
|
|
}
|
|
|
|
// updateStatusInternal updates the internal status cache, and queues an update to the api server if
|
|
// necessary. Returns whether an update was triggered.
|
|
// This method IS NOT THREAD SAFE and must be called from a locked function.
|
|
func (m *manager) updateStatusInternal(pod *api.Pod, status api.PodStatus) bool {
|
|
// The intent here is to prevent concurrent updates to a pod's status from
|
|
// clobbering each other so the phase of a pod progresses monotonically.
|
|
oldStatus, found := m.podStatuses[pod.UID]
|
|
if found && isStatusEqual(&oldStatus.status, &status) && pod.DeletionTimestamp == nil {
|
|
glog.V(3).Infof("Ignoring same status for pod %q, status: %+v", kubeletutil.FormatPodName(pod), status)
|
|
return false // No new status.
|
|
}
|
|
|
|
newStatus := versionedPodStatus{
|
|
status: status,
|
|
version: oldStatus.version + 1,
|
|
podName: pod.Name,
|
|
podNamespace: pod.Namespace,
|
|
}
|
|
m.podStatuses[pod.UID] = newStatus
|
|
|
|
select {
|
|
case m.podStatusChannel <- podStatusSyncRequest{pod.UID, newStatus}:
|
|
return true
|
|
default:
|
|
// Let the periodic syncBatch handle the update if the channel is full.
|
|
// We can't block, since we hold the mutex lock.
|
|
return false
|
|
}
|
|
}
|
|
|
|
// deletePodStatus simply removes the given pod from the status cache.
|
|
func (m *manager) deletePodStatus(uid types.UID) {
|
|
m.podStatusesLock.Lock()
|
|
defer m.podStatusesLock.Unlock()
|
|
delete(m.podStatuses, uid)
|
|
}
|
|
|
|
// TODO(filipg): It'd be cleaner if we can do this without signal from user.
|
|
func (m *manager) RemoveOrphanedStatuses(podUIDs map[types.UID]bool) {
|
|
m.podStatusesLock.Lock()
|
|
defer m.podStatusesLock.Unlock()
|
|
for key := range m.podStatuses {
|
|
if _, ok := podUIDs[key]; !ok {
|
|
glog.V(5).Infof("Removing %q from status map.", key)
|
|
delete(m.podStatuses, key)
|
|
}
|
|
}
|
|
}
|
|
|
|
// syncBatch syncs pods statuses with the apiserver.
|
|
func (m *manager) syncBatch() {
|
|
var updatedStatuses []podStatusSyncRequest
|
|
podToMirror, mirrorToPod := m.podManager.GetUIDTranslations()
|
|
func() { // Critical section
|
|
m.podStatusesLock.RLock()
|
|
defer m.podStatusesLock.RUnlock()
|
|
|
|
// Clean up orphaned versions.
|
|
for uid := range m.apiStatusVersions {
|
|
_, hasPod := m.podStatuses[uid]
|
|
_, hasMirror := mirrorToPod[uid]
|
|
if !hasPod && !hasMirror {
|
|
delete(m.apiStatusVersions, uid)
|
|
}
|
|
}
|
|
|
|
for uid, status := range m.podStatuses {
|
|
syncedUID := uid
|
|
if mirrorUID, ok := podToMirror[uid]; ok {
|
|
syncedUID = mirrorUID
|
|
}
|
|
if m.needsUpdate(syncedUID, status) {
|
|
updatedStatuses = append(updatedStatuses, podStatusSyncRequest{uid, status})
|
|
}
|
|
}
|
|
}()
|
|
|
|
for _, update := range updatedStatuses {
|
|
m.syncPod(update.podUID, update.status)
|
|
}
|
|
}
|
|
|
|
// syncPod syncs the given status with the API server. The caller must not hold the lock.
|
|
func (m *manager) syncPod(uid types.UID, status versionedPodStatus) {
|
|
// TODO: make me easier to express from client code
|
|
pod, err := m.kubeClient.Pods(status.podNamespace).Get(status.podName)
|
|
if errors.IsNotFound(err) {
|
|
glog.V(3).Infof("Pod %q (%s) was deleted on the server", status.podName, uid)
|
|
m.deletePodStatus(uid)
|
|
return
|
|
}
|
|
if err == nil {
|
|
translatedUID := m.podManager.TranslatePodUID(pod.UID)
|
|
if len(translatedUID) > 0 && translatedUID != uid {
|
|
glog.V(3).Infof("Pod %q was deleted and then recreated, skipping status update", kubeletutil.FormatPodName(pod))
|
|
m.deletePodStatus(uid)
|
|
return
|
|
}
|
|
if !m.needsUpdate(pod.UID, status) {
|
|
glog.V(1).Infof("Status for pod %q is up-to-date; skipping", kubeletutil.FormatPodName(pod))
|
|
return
|
|
}
|
|
pod.Status = status.status
|
|
// TODO: handle conflict as a retry, make that easier too.
|
|
pod, err = m.kubeClient.Pods(pod.Namespace).UpdateStatus(pod)
|
|
if err == nil {
|
|
glog.V(3).Infof("Status for pod %q updated successfully: %+v", kubeletutil.FormatPodName(pod), status)
|
|
m.apiStatusVersions[pod.UID] = status.version
|
|
|
|
if pod.DeletionTimestamp == nil {
|
|
return
|
|
}
|
|
if !notRunning(pod.Status.ContainerStatuses) {
|
|
glog.V(3).Infof("Pod %q is terminated, but some containers are still running", kubeletutil.FormatPodName(pod))
|
|
return
|
|
}
|
|
if err := m.kubeClient.Pods(pod.Namespace).Delete(pod.Name, api.NewDeleteOptions(0)); err == nil {
|
|
glog.V(3).Infof("Pod %q fully terminated and removed from etcd", kubeletutil.FormatPodName(pod))
|
|
m.deletePodStatus(uid)
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
// We failed to update status, wait for periodic sync to retry.
|
|
glog.Warningf("Failed to updated status for pod %q: %v", kubeletutil.FormatPodName(pod), err)
|
|
}
|
|
|
|
// needsUpdate returns whether the status is stale for the given pod UID.
|
|
// This method is not thread safe, and most only be accessed by the sync thread.
|
|
func (m *manager) needsUpdate(uid types.UID, status versionedPodStatus) bool {
|
|
latest, ok := m.apiStatusVersions[uid]
|
|
return !ok || latest < status.version
|
|
}
|
|
|
|
// notRunning returns true if every status is terminated or waiting, or the status list
|
|
// is empty.
|
|
func notRunning(statuses []api.ContainerStatus) bool {
|
|
for _, status := range statuses {
|
|
if status.State.Terminated == nil && status.State.Waiting == nil {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|