2014-10-06 01:24:19 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
2014-10-06 01:24:19 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// A set of common functions needed by cmd/kubectl and pkg/kubectl packages.
|
|
|
|
package kubectl
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
|
|
|
"k8s.io/kubernetes/pkg/api/meta"
|
2015-11-16 20:14:27 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api/unversioned"
|
2014-10-06 01:24:19 +00:00
|
|
|
)
|
|
|
|
|
2014-12-10 21:48:48 +00:00
|
|
|
const kubectlAnnotationPrefix = "kubectl.kubernetes.io/"
|
|
|
|
|
2014-10-21 18:11:53 +00:00
|
|
|
type NamespaceInfo struct {
|
|
|
|
Namespace string
|
|
|
|
}
|
|
|
|
|
2014-11-15 00:20:43 +00:00
|
|
|
func listOfImages(spec *api.PodSpec) []string {
|
2014-10-06 01:24:19 +00:00
|
|
|
var images []string
|
2014-11-07 02:09:46 +00:00
|
|
|
for _, container := range spec.Containers {
|
2014-10-06 01:24:19 +00:00
|
|
|
images = append(images, container.Image)
|
|
|
|
}
|
2014-11-15 00:20:43 +00:00
|
|
|
return images
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeImageList(spec *api.PodSpec) string {
|
|
|
|
return strings.Join(listOfImages(spec), ",")
|
2014-10-06 01:24:19 +00:00
|
|
|
}
|
2014-11-04 02:02:27 +00:00
|
|
|
|
2014-12-31 23:35:52 +00:00
|
|
|
// OutputVersionMapper is a RESTMapper that will prefer mappings that
|
|
|
|
// correspond to a preferred output version (if feasible)
|
|
|
|
type OutputVersionMapper struct {
|
|
|
|
meta.RESTMapper
|
2015-12-01 16:52:11 +00:00
|
|
|
|
|
|
|
// output versions takes a list of preferred GroupVersions. Only the first
|
|
|
|
// hit for a given group will have effect. This allows different output versions
|
|
|
|
// depending upon the group of the kind being requested
|
|
|
|
OutputVersions []unversioned.GroupVersion
|
2014-12-31 23:35:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RESTMapping implements meta.RESTMapper by prepending the output version to the preferred version list.
|
2015-11-16 21:24:59 +00:00
|
|
|
func (m OutputVersionMapper) RESTMapping(gk unversioned.GroupKind, versions ...string) (*meta.RESTMapping, error) {
|
2015-12-01 16:52:11 +00:00
|
|
|
for _, preferredVersion := range m.OutputVersions {
|
|
|
|
if gk.Group == preferredVersion.Group {
|
|
|
|
mapping, err := m.RESTMapper.RESTMapping(gk, preferredVersion.Version)
|
|
|
|
if err == nil {
|
|
|
|
return mapping, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
break
|
|
|
|
}
|
2015-03-04 03:56:31 +00:00
|
|
|
}
|
2015-11-20 21:19:26 +00:00
|
|
|
|
2015-11-16 21:24:59 +00:00
|
|
|
return m.RESTMapper.RESTMapping(gk, versions...)
|
2014-12-31 23:35:52 +00:00
|
|
|
}
|
|
|
|
|
2014-12-28 05:27:52 +00:00
|
|
|
// ShortcutExpander is a RESTMapper that can be used for Kubernetes
|
|
|
|
// resources.
|
|
|
|
type ShortcutExpander struct {
|
|
|
|
meta.RESTMapper
|
|
|
|
}
|
|
|
|
|
2015-11-16 20:14:27 +00:00
|
|
|
var _ meta.RESTMapper = &ShortcutExpander{}
|
|
|
|
|
|
|
|
// KindFor implements meta.RESTMapper. It expands the resource first, then invokes the wrapped
|
2014-12-28 05:27:52 +00:00
|
|
|
// mapper.
|
2015-12-18 00:57:29 +00:00
|
|
|
func (e ShortcutExpander) KindFor(resource string) (unversioned.GroupVersionKind, error) {
|
2014-12-28 05:27:52 +00:00
|
|
|
resource = expandResourceShortcut(resource)
|
2015-11-16 20:14:27 +00:00
|
|
|
return e.RESTMapper.KindFor(resource)
|
2014-12-28 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2015-09-24 01:17:09 +00:00
|
|
|
// ResourceIsValid takes a string (kind) and checks if it's a valid resource.
|
|
|
|
// It expands the resource first, then invokes the wrapped mapper.
|
2015-12-18 00:57:29 +00:00
|
|
|
func (e ShortcutExpander) ResourceIsValid(resource string) bool {
|
2015-09-24 01:17:09 +00:00
|
|
|
return e.RESTMapper.ResourceIsValid(expandResourceShortcut(resource))
|
|
|
|
}
|
|
|
|
|
2014-12-28 05:27:52 +00:00
|
|
|
// expandResourceShortcut will return the expanded version of resource
|
2014-11-04 02:02:27 +00:00
|
|
|
// (something that a pkg/api/meta.RESTMapper can understand), if it is
|
|
|
|
// indeed a shortcut. Otherwise, will return resource unmodified.
|
2015-12-18 00:57:29 +00:00
|
|
|
func expandResourceShortcut(resource string) string {
|
|
|
|
shortForms := map[string]string{
|
2015-04-15 19:23:02 +00:00
|
|
|
// Please keep this alphabetized
|
2015-12-18 00:57:29 +00:00
|
|
|
"cs": "componentstatuses",
|
|
|
|
"ds": "daemonsets",
|
|
|
|
"ep": "endpoints",
|
|
|
|
"ev": "events",
|
|
|
|
"hpa": "horizontalpodautoscalers",
|
|
|
|
"ing": "ingresses",
|
|
|
|
"limits": "limitranges",
|
|
|
|
"no": "nodes",
|
|
|
|
"ns": "namespaces",
|
|
|
|
"po": "pods",
|
|
|
|
"pvc": "persistentvolumeclaims",
|
|
|
|
"pv": "persistentvolumes",
|
|
|
|
"quota": "resourcequotas",
|
|
|
|
"rc": "replicationcontrollers",
|
|
|
|
"svc": "services",
|
2014-11-04 02:02:27 +00:00
|
|
|
}
|
2015-12-18 00:57:29 +00:00
|
|
|
if expanded, ok := shortForms[resource]; ok {
|
2014-11-04 02:02:27 +00:00
|
|
|
return expanded
|
|
|
|
}
|
|
|
|
return resource
|
|
|
|
}
|