mirror of https://github.com/k3s-io/k3s
105 lines
3.8 KiB
Go
105 lines
3.8 KiB
Go
|
/*
|
||
|
Copyright 2021 The Kubernetes 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 podcmd
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"io"
|
||
|
"strings"
|
||
|
|
||
|
v1 "k8s.io/api/core/v1"
|
||
|
"k8s.io/klog/v2"
|
||
|
)
|
||
|
|
||
|
// DefaultContainerAnnotationName is an annotation name that can be used to preselect the interesting container
|
||
|
// from a pod when running kubectl.
|
||
|
const DefaultContainerAnnotationName = "kubectl.kubernetes.io/default-container"
|
||
|
|
||
|
// FindContainerByName selects the named container from the spec of
|
||
|
// the provided pod or return nil if no such container exists.
|
||
|
func FindContainerByName(pod *v1.Pod, name string) (*v1.Container, string) {
|
||
|
for i := range pod.Spec.Containers {
|
||
|
if pod.Spec.Containers[i].Name == name {
|
||
|
return &pod.Spec.Containers[i], fmt.Sprintf("spec.containers{%s}", name)
|
||
|
}
|
||
|
}
|
||
|
for i := range pod.Spec.InitContainers {
|
||
|
if pod.Spec.InitContainers[i].Name == name {
|
||
|
return &pod.Spec.InitContainers[i], fmt.Sprintf("spec.initContainers{%s}", name)
|
||
|
}
|
||
|
}
|
||
|
for i := range pod.Spec.EphemeralContainers {
|
||
|
if pod.Spec.EphemeralContainers[i].Name == name {
|
||
|
return (*v1.Container)(&pod.Spec.EphemeralContainers[i].EphemeralContainerCommon), fmt.Sprintf("spec.ephemeralContainers{%s}", name)
|
||
|
}
|
||
|
}
|
||
|
return nil, ""
|
||
|
}
|
||
|
|
||
|
// FindOrDefaultContainerByName defaults a container for a pod to the first container if any
|
||
|
// exists, or returns an error. It will print a message to the user indicating a default was
|
||
|
// selected if there was more than one container.
|
||
|
func FindOrDefaultContainerByName(pod *v1.Pod, name string, quiet bool, warn io.Writer) (*v1.Container, error) {
|
||
|
var container *v1.Container
|
||
|
|
||
|
if len(name) > 0 {
|
||
|
container, _ = FindContainerByName(pod, name)
|
||
|
if container == nil {
|
||
|
return nil, fmt.Errorf("container %s not found in pod %s", name, pod.Name)
|
||
|
}
|
||
|
return container, nil
|
||
|
}
|
||
|
|
||
|
// this should never happen, but just in case
|
||
|
if len(pod.Spec.Containers) == 0 {
|
||
|
return nil, fmt.Errorf("pod %s/%s does not have any containers", pod.Namespace, pod.Name)
|
||
|
}
|
||
|
|
||
|
// read the default container the annotation as per
|
||
|
// https://github.com/kubernetes/enhancements/tree/master/keps/sig-cli/2227-kubectl-default-container
|
||
|
if name := pod.Annotations[DefaultContainerAnnotationName]; len(name) > 0 {
|
||
|
if container, _ = FindContainerByName(pod, name); container != nil {
|
||
|
klog.V(4).Infof("Defaulting container name from annotation %s", container.Name)
|
||
|
return container, nil
|
||
|
}
|
||
|
klog.V(4).Infof("Default container name from annotation %s was not found in the pod", name)
|
||
|
}
|
||
|
|
||
|
// pick the first container as per existing behavior
|
||
|
container = &pod.Spec.Containers[0]
|
||
|
if !quiet && (len(pod.Spec.Containers) > 1 || len(pod.Spec.InitContainers) > 0 || len(pod.Spec.EphemeralContainers) > 0) {
|
||
|
fmt.Fprintf(warn, "Defaulted container %q out of: %s\n", container.Name, allContainerNames(pod))
|
||
|
}
|
||
|
|
||
|
klog.V(4).Infof("Defaulting container name to %s", container.Name)
|
||
|
return &pod.Spec.Containers[0], nil
|
||
|
}
|
||
|
|
||
|
func allContainerNames(pod *v1.Pod) string {
|
||
|
var containers []string
|
||
|
for _, container := range pod.Spec.Containers {
|
||
|
containers = append(containers, container.Name)
|
||
|
}
|
||
|
for _, container := range pod.Spec.EphemeralContainers {
|
||
|
containers = append(containers, fmt.Sprintf("%s (ephem)", container.Name))
|
||
|
}
|
||
|
for _, container := range pod.Spec.InitContainers {
|
||
|
containers = append(containers, fmt.Sprintf("%s (init)", container.Name))
|
||
|
}
|
||
|
return strings.Join(containers, ", ")
|
||
|
}
|