2014-10-06 01:24:19 +00:00
|
|
|
/*
|
2016-06-03 00:25:58 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors.
|
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 (
|
2016-02-19 02:24:21 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"path"
|
2014-10-06 01:24:19 +00:00
|
|
|
"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
|
|
|
)
|
|
|
|
|
2016-03-21 21:00:43 +00:00
|
|
|
const (
|
|
|
|
kubectlAnnotationPrefix = "kubectl.kubernetes.io/"
|
|
|
|
// TODO: auto-generate this
|
|
|
|
PossibleResourceTypes = `Possible resource types include (case insensitive): pods (po), services (svc), deployments,
|
|
|
|
replicasets (rs), replicationcontrollers (rc), nodes (no), events (ev), limitranges (limits),
|
|
|
|
persistentvolumes (pv), persistentvolumeclaims (pvc), resourcequotas (quota), namespaces (ns),
|
2016-03-25 21:28:52 +00:00
|
|
|
serviceaccounts (sa), ingresses (ing), horizontalpodautoscalers (hpa), daemonsets (ds), configmaps,
|
2016-03-21 21:00:43 +00:00
|
|
|
componentstatuses (cs), endpoints (ep), and secrets.`
|
|
|
|
)
|
2014-12-10 21:48:48 +00:00
|
|
|
|
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 {
|
2016-05-29 09:09:39 +00:00
|
|
|
images := make([]string, 0, len(spec.Containers))
|
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
|
|
|
|
2016-03-10 01:27:19 +00:00
|
|
|
func NewThirdPartyResourceMapper(gvs []unversioned.GroupVersion, gvks []unversioned.GroupVersionKind) (meta.RESTMapper, error) {
|
|
|
|
mapper := meta.NewDefaultRESTMapper(gvs, func(gv unversioned.GroupVersion) (*meta.VersionInterfaces, error) {
|
|
|
|
for ix := range gvs {
|
|
|
|
if gvs[ix].Group == gv.Group && gvs[ix].Version == gv.Version {
|
|
|
|
return &meta.VersionInterfaces{
|
|
|
|
ObjectConvertor: api.Scheme,
|
|
|
|
MetadataAccessor: meta.NewAccessor(),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
}
|
2016-05-29 09:09:39 +00:00
|
|
|
groupVersions := make([]string, 0, len(gvs))
|
2016-03-10 01:27:19 +00:00
|
|
|
for ix := range gvs {
|
|
|
|
groupVersions = append(groupVersions, gvs[ix].String())
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("unsupported storage version: %s (valid: %s)", gv.String(), strings.Join(groupVersions, ", "))
|
|
|
|
})
|
|
|
|
for ix := range gvks {
|
|
|
|
mapper.Add(gvks[ix], meta.RESTScopeNamespace)
|
|
|
|
}
|
|
|
|
return mapper, nil
|
|
|
|
}
|
|
|
|
|
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
|
2016-02-09 14:03:12 +00:00
|
|
|
// resources. It expands the resource first, then invokes the wrapped RESTMapper
|
2014-12-28 05:27:52 +00:00
|
|
|
type ShortcutExpander struct {
|
2016-02-09 14:03:12 +00:00
|
|
|
RESTMapper meta.RESTMapper
|
2014-12-28 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2015-11-16 20:14:27 +00:00
|
|
|
var _ meta.RESTMapper = &ShortcutExpander{}
|
|
|
|
|
2015-12-07 13:12:24 +00:00
|
|
|
func (e ShortcutExpander) KindFor(resource unversioned.GroupVersionResource) (unversioned.GroupVersionKind, error) {
|
2016-02-09 14:03:12 +00:00
|
|
|
return e.RESTMapper.KindFor(expandResourceShortcut(resource))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e ShortcutExpander) KindsFor(resource unversioned.GroupVersionResource) ([]unversioned.GroupVersionKind, error) {
|
|
|
|
return e.RESTMapper.KindsFor(expandResourceShortcut(resource))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e ShortcutExpander) ResourcesFor(resource unversioned.GroupVersionResource) ([]unversioned.GroupVersionResource, error) {
|
|
|
|
return e.RESTMapper.ResourcesFor(expandResourceShortcut(resource))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e ShortcutExpander) ResourceFor(resource unversioned.GroupVersionResource) (unversioned.GroupVersionResource, error) {
|
|
|
|
return e.RESTMapper.ResourceFor(expandResourceShortcut(resource))
|
2014-12-28 05:27:52 +00:00
|
|
|
}
|
|
|
|
|
2015-12-11 22:15:41 +00:00
|
|
|
func (e ShortcutExpander) ResourceSingularizer(resource string) (string, error) {
|
2015-12-07 13:12:24 +00:00
|
|
|
return e.RESTMapper.ResourceSingularizer(expandResourceShortcut(unversioned.GroupVersionResource{Resource: resource}).Resource)
|
2015-12-11 22:15:41 +00:00
|
|
|
}
|
|
|
|
|
2016-02-09 14:03:12 +00:00
|
|
|
func (e ShortcutExpander) RESTMapping(gk unversioned.GroupKind, versions ...string) (*meta.RESTMapping, error) {
|
|
|
|
return e.RESTMapper.RESTMapping(gk, versions...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e ShortcutExpander) AliasesForResource(resource string) ([]string, bool) {
|
|
|
|
return e.RESTMapper.AliasesForResource(expandResourceShortcut(unversioned.GroupVersionResource{Resource: resource}).Resource)
|
|
|
|
}
|
|
|
|
|
|
|
|
// shortForms is the list of short names to their expanded names
|
|
|
|
var shortForms = map[string]string{
|
|
|
|
// Please keep this alphabetized
|
|
|
|
// If you add an entry here, please also take a look at pkg/kubectl/cmd/cmd.go
|
|
|
|
// and add an entry to valid_resources when appropriate.
|
|
|
|
"cs": "componentstatuses",
|
|
|
|
"ds": "daemonsets",
|
|
|
|
"ep": "endpoints",
|
|
|
|
"ev": "events",
|
|
|
|
"hpa": "horizontalpodautoscalers",
|
|
|
|
"ing": "ingresses",
|
|
|
|
"limits": "limitranges",
|
|
|
|
"no": "nodes",
|
|
|
|
"ns": "namespaces",
|
|
|
|
"po": "pods",
|
|
|
|
"psp": "podSecurityPolicies",
|
|
|
|
"pvc": "persistentvolumeclaims",
|
|
|
|
"pv": "persistentvolumes",
|
|
|
|
"quota": "resourcequotas",
|
|
|
|
"rc": "replicationcontrollers",
|
|
|
|
"rs": "replicasets",
|
2016-03-25 21:28:52 +00:00
|
|
|
"sa": "serviceaccounts",
|
2016-02-09 14:03:12 +00:00
|
|
|
"svc": "services",
|
|
|
|
}
|
|
|
|
|
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-07 13:12:24 +00:00
|
|
|
func expandResourceShortcut(resource unversioned.GroupVersionResource) unversioned.GroupVersionResource {
|
|
|
|
if expanded, ok := shortForms[resource.Resource]; ok {
|
2016-02-09 14:03:12 +00:00
|
|
|
// don't change the group or version that's already been specified
|
|
|
|
resource.Resource = expanded
|
2014-11-04 02:02:27 +00:00
|
|
|
}
|
|
|
|
return resource
|
|
|
|
}
|
2016-02-19 02:24:21 +00:00
|
|
|
|
2016-03-20 18:14:25 +00:00
|
|
|
// ResourceAliases returns the resource shortcuts and plural forms for the given resources.
|
|
|
|
func ResourceAliases(rs []string) []string {
|
|
|
|
as := make([]string, 0, len(rs))
|
|
|
|
plurals := make(map[string]struct{}, len(rs))
|
|
|
|
for _, r := range rs {
|
|
|
|
var plural string
|
|
|
|
switch {
|
|
|
|
case r == "endpoints":
|
|
|
|
plural = r // exception. "endpoint" does not exist. Why?
|
|
|
|
case strings.HasSuffix(r, "y"):
|
|
|
|
plural = r[0:len(r)-1] + "ies"
|
|
|
|
case strings.HasSuffix(r, "s"):
|
|
|
|
plural = r + "es"
|
|
|
|
default:
|
|
|
|
plural = r + "s"
|
|
|
|
}
|
|
|
|
as = append(as, plural)
|
|
|
|
|
|
|
|
plurals[plural] = struct{}{}
|
|
|
|
}
|
|
|
|
|
|
|
|
for sf, r := range shortForms {
|
|
|
|
if _, found := plurals[r]; found {
|
|
|
|
as = append(as, sf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return as
|
|
|
|
}
|
|
|
|
|
2016-02-19 02:24:21 +00:00
|
|
|
// parseFileSource parses the source given. Acceptable formats include:
|
|
|
|
//
|
|
|
|
// 1. source-path: the basename will become the key name
|
|
|
|
// 2. source-name=source-path: the source-name will become the key name and source-path is the path to the key file
|
|
|
|
//
|
|
|
|
// Key names cannot include '='.
|
|
|
|
func parseFileSource(source string) (keyName, filePath string, err error) {
|
|
|
|
numSeparators := strings.Count(source, "=")
|
|
|
|
switch {
|
|
|
|
case numSeparators == 0:
|
|
|
|
return path.Base(source), source, nil
|
|
|
|
case numSeparators == 1 && strings.HasPrefix(source, "="):
|
|
|
|
return "", "", fmt.Errorf("key name for file path %v missing.", strings.TrimPrefix(source, "="))
|
|
|
|
case numSeparators == 1 && strings.HasSuffix(source, "="):
|
|
|
|
return "", "", fmt.Errorf("file path for key name %v missing.", strings.TrimSuffix(source, "="))
|
|
|
|
case numSeparators > 1:
|
|
|
|
return "", "", errors.New("Key names or file paths cannot contain '='.")
|
|
|
|
default:
|
|
|
|
components := strings.Split(source, "=")
|
|
|
|
return components[0], components[1], nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// parseLiteralSource parses the source key=val pair
|
|
|
|
func parseLiteralSource(source string) (keyName, value string, err error) {
|
2016-04-29 17:09:46 +00:00
|
|
|
// leading equal is invalid
|
|
|
|
if strings.Index(source, "=") == 0 {
|
|
|
|
return "", "", fmt.Errorf("invalid literal source %v, expected key=value", source)
|
|
|
|
}
|
|
|
|
// split after the first equal (so values can have the = character)
|
|
|
|
items := strings.SplitN(source, "=", 2)
|
2016-02-19 02:24:21 +00:00
|
|
|
if len(items) != 2 {
|
|
|
|
return "", "", fmt.Errorf("invalid literal source %v, expected key=value", source)
|
|
|
|
}
|
|
|
|
|
|
|
|
return items[0], items[1], nil
|
|
|
|
}
|