mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	If a static pod changes, delete the corresponding mirror pod. When kubelet could not see mirror pod from the API server update, it'd attemp to create a new mirror pod with up-to-date specs.
		
			
				
	
	
		
			198 lines
		
	
	
		
			6.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			198 lines
		
	
	
		
			6.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2014 Google Inc. 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.
 | 
						|
*/
 | 
						|
 | 
						|
// Common logic used by both http and file channels.
 | 
						|
package config
 | 
						|
 | 
						|
import (
 | 
						|
	"crypto/md5"
 | 
						|
	"encoding/hex"
 | 
						|
	"fmt"
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
 | 
						|
	"github.com/GoogleCloudPlatform/kubernetes/pkg/api/v1beta1"
 | 
						|
	"github.com/GoogleCloudPlatform/kubernetes/pkg/api/validation"
 | 
						|
	"github.com/GoogleCloudPlatform/kubernetes/pkg/kubelet"
 | 
						|
	"github.com/GoogleCloudPlatform/kubernetes/pkg/types"
 | 
						|
	"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
 | 
						|
 | 
						|
	"github.com/ghodss/yaml"
 | 
						|
	"github.com/golang/glog"
 | 
						|
)
 | 
						|
 | 
						|
// Generate a pod name that is unique among nodes by appending the hostname.
 | 
						|
func generatePodName(name, hostname string) (string, error) {
 | 
						|
	// Hostname can be a fully-qualified domain name. To increase readability,
 | 
						|
	// only append the first chunk. Note that this assumes that no two nodes in
 | 
						|
	// the cluster should have the same host-specific label; this is true if
 | 
						|
	// all nodes have the same domain name.
 | 
						|
	chunks := strings.Split(hostname, ".")
 | 
						|
	return fmt.Sprintf("%s-%s", name, chunks[0]), nil
 | 
						|
}
 | 
						|
 | 
						|
func applyDefaults(pod *api.Pod, source string, isFile bool, hostname string) error {
 | 
						|
	if len(pod.UID) == 0 {
 | 
						|
		hasher := md5.New()
 | 
						|
		if isFile {
 | 
						|
			fmt.Fprintf(hasher, "host:%s", hostname)
 | 
						|
			fmt.Fprintf(hasher, "file:%s", source)
 | 
						|
		} else {
 | 
						|
			fmt.Fprintf(hasher, "url:%s", source)
 | 
						|
		}
 | 
						|
		util.DeepHashObject(hasher, pod)
 | 
						|
		pod.UID = types.UID(hex.EncodeToString(hasher.Sum(nil)[0:]))
 | 
						|
		glog.V(5).Infof("Generated UID %q pod %q from %s", pod.UID, pod.Name, source)
 | 
						|
	}
 | 
						|
 | 
						|
	// This is required for backward compatibility, and should be removed once we
 | 
						|
	// completely deprecate ContainerManifest.
 | 
						|
	var err error
 | 
						|
	if len(pod.Name) == 0 {
 | 
						|
		pod.Name = string(pod.UID)
 | 
						|
	}
 | 
						|
	if pod.Name, err = generatePodName(pod.Name, hostname); err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	glog.V(5).Infof("Generated Name %q for UID %q from URL %s", pod.Name, pod.UID, source)
 | 
						|
 | 
						|
	if pod.Namespace == "" {
 | 
						|
		pod.Namespace = kubelet.NamespaceDefault
 | 
						|
	}
 | 
						|
	glog.V(5).Infof("Using namespace %q for pod %q from %s", pod.Namespace, pod.Name, source)
 | 
						|
 | 
						|
	// Set the Host field to indicate this pod is scheduled on the current node.
 | 
						|
	pod.Spec.Host = hostname
 | 
						|
 | 
						|
	// Currently just simply follow the same format in resthandler.go
 | 
						|
	pod.ObjectMeta.SelfLink =
 | 
						|
		fmt.Sprintf("/api/v1beta2/pods/%s?namespace=%s", pod.Name, pod.Namespace)
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
type defaultFunc func(pod *api.Pod) error
 | 
						|
 | 
						|
func tryDecodeSinglePod(data []byte, defaultFn defaultFunc) (parsed bool, pod api.Pod, err error) {
 | 
						|
	obj, err := api.Scheme.Decode(data)
 | 
						|
	if err != nil {
 | 
						|
		return false, pod, err
 | 
						|
	}
 | 
						|
	// Check whether the object could be converted to single pod.
 | 
						|
	if _, ok := obj.(*api.Pod); !ok {
 | 
						|
		err = fmt.Errorf("invalid pod: %+v", obj)
 | 
						|
		return false, pod, err
 | 
						|
	}
 | 
						|
	newPod := obj.(*api.Pod)
 | 
						|
	// Apply default values and validate the pod.
 | 
						|
	if err = defaultFn(newPod); err != nil {
 | 
						|
		return true, pod, err
 | 
						|
	}
 | 
						|
	if errs := validation.ValidatePod(newPod); len(errs) > 0 {
 | 
						|
		err = fmt.Errorf("invalid pod: %v", errs)
 | 
						|
		return true, pod, err
 | 
						|
	}
 | 
						|
	return true, *newPod, nil
 | 
						|
}
 | 
						|
 | 
						|
func tryDecodePodList(data []byte, defaultFn defaultFunc) (parsed bool, pods api.PodList, err error) {
 | 
						|
	obj, err := api.Scheme.Decode(data)
 | 
						|
	if err != nil {
 | 
						|
		return false, pods, err
 | 
						|
	}
 | 
						|
	// Check whether the object could be converted to list of pods.
 | 
						|
	if _, ok := obj.(*api.PodList); !ok {
 | 
						|
		err = fmt.Errorf("invalid pods list: %+v", obj)
 | 
						|
		return false, pods, err
 | 
						|
	}
 | 
						|
	newPods := obj.(*api.PodList)
 | 
						|
	// Apply default values and validate pods.
 | 
						|
	for i := range newPods.Items {
 | 
						|
		newPod := &newPods.Items[i]
 | 
						|
		if err = defaultFn(newPod); err != nil {
 | 
						|
			return true, pods, err
 | 
						|
		}
 | 
						|
		if errs := validation.ValidatePod(newPod); len(errs) > 0 {
 | 
						|
			err = fmt.Errorf("invalid pod: %v", errs)
 | 
						|
			return true, pods, err
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return true, *newPods, err
 | 
						|
}
 | 
						|
 | 
						|
func tryDecodeSingleManifest(data []byte, defaultFn defaultFunc) (parsed bool, manifest v1beta1.ContainerManifest, pod api.Pod, err error) {
 | 
						|
	// TODO: should be api.Scheme.Decode
 | 
						|
	// This is awful.  DecodeInto() expects to find an APIObject, which
 | 
						|
	// Manifest is not.  We keep reading manifest for now for compat, but
 | 
						|
	// we will eventually change it to read Pod (at which point this all
 | 
						|
	// becomes nicer).  Until then, we assert that the ContainerManifest
 | 
						|
	// structure on disk is always v1beta1.  Read that, convert it to a
 | 
						|
	// "current" ContainerManifest (should be ~identical), then convert
 | 
						|
	// that to a Pod (which is a well-understood conversion).  This
 | 
						|
	// avoids writing a v1beta1.ContainerManifest -> api.Pod
 | 
						|
	// conversion which would be identical to the api.ContainerManifest ->
 | 
						|
	// api.Pod conversion.
 | 
						|
	if err = yaml.Unmarshal(data, &manifest); err != nil {
 | 
						|
		return false, manifest, pod, err
 | 
						|
	}
 | 
						|
	newManifest := api.ContainerManifest{}
 | 
						|
	if err = api.Scheme.Convert(&manifest, &newManifest); err != nil {
 | 
						|
		return false, manifest, pod, err
 | 
						|
	}
 | 
						|
	if errs := validation.ValidateManifest(&newManifest); len(errs) > 0 {
 | 
						|
		err = fmt.Errorf("invalid manifest: %v", errs)
 | 
						|
		return false, manifest, pod, err
 | 
						|
	}
 | 
						|
	if err = api.Scheme.Convert(&newManifest, &pod); err != nil {
 | 
						|
		return true, manifest, pod, err
 | 
						|
	}
 | 
						|
	if err := defaultFn(&pod); err != nil {
 | 
						|
		return true, manifest, pod, err
 | 
						|
	}
 | 
						|
	// Success.
 | 
						|
	return true, manifest, pod, nil
 | 
						|
}
 | 
						|
 | 
						|
func tryDecodeManifestList(data []byte, defaultFn defaultFunc) (parsed bool, manifests []v1beta1.ContainerManifest, pods api.PodList, err error) {
 | 
						|
	// TODO: should be api.Scheme.Decode
 | 
						|
	// See the comment in tryDecodeSingle().
 | 
						|
	if err = yaml.Unmarshal(data, &manifests); err != nil {
 | 
						|
		return false, manifests, pods, err
 | 
						|
	}
 | 
						|
	newManifests := []api.ContainerManifest{}
 | 
						|
	if err = api.Scheme.Convert(&manifests, &newManifests); err != nil {
 | 
						|
		return false, manifests, pods, err
 | 
						|
	}
 | 
						|
	for i := range newManifests {
 | 
						|
		manifest := &newManifests[i]
 | 
						|
		if errs := validation.ValidateManifest(manifest); len(errs) > 0 {
 | 
						|
			err = fmt.Errorf("invalid manifest: %v", errs)
 | 
						|
			return false, manifests, pods, err
 | 
						|
		}
 | 
						|
	}
 | 
						|
	list := api.ContainerManifestList{Items: newManifests}
 | 
						|
	if err = api.Scheme.Convert(&list, &pods); err != nil {
 | 
						|
		return true, manifests, pods, err
 | 
						|
	}
 | 
						|
	for i := range pods.Items {
 | 
						|
		pod := &pods.Items[i]
 | 
						|
		if err := defaultFn(pod); err != nil {
 | 
						|
			return true, manifests, pods, err
 | 
						|
		}
 | 
						|
	}
 | 
						|
	// Success.
 | 
						|
	return true, manifests, pods, nil
 | 
						|
}
 |