mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			347 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			347 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2014 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 cmd
 | 
						|
 | 
						|
import (
 | 
						|
	"regexp"
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"github.com/golang/glog"
 | 
						|
	"github.com/spf13/cobra"
 | 
						|
 | 
						|
	"k8s.io/apimachinery/pkg/api/meta"
 | 
						|
	"k8s.io/apimachinery/pkg/runtime"
 | 
						|
	"k8s.io/apimachinery/pkg/runtime/schema"
 | 
						|
	"k8s.io/apimachinery/pkg/util/validation"
 | 
						|
	"k8s.io/kubernetes/pkg/kubectl"
 | 
						|
	"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
 | 
						|
	cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
 | 
						|
	"k8s.io/kubernetes/pkg/kubectl/genericclioptions"
 | 
						|
	"k8s.io/kubernetes/pkg/kubectl/resource"
 | 
						|
	"k8s.io/kubernetes/pkg/kubectl/util/i18n"
 | 
						|
	"k8s.io/kubernetes/pkg/printers"
 | 
						|
)
 | 
						|
 | 
						|
var (
 | 
						|
	exposeResources = `pod (po), service (svc), replicationcontroller (rc), deployment (deploy), replicaset (rs)`
 | 
						|
 | 
						|
	exposeLong = templates.LongDesc(`
 | 
						|
		Expose a resource as a new Kubernetes service.
 | 
						|
 | 
						|
		Looks up a deployment, service, replica set, replication controller or pod by name and uses the selector
 | 
						|
		for that resource as the selector for a new service on the specified port. A deployment or replica set
 | 
						|
		will be exposed as a service only if its selector is convertible to a selector that service supports,
 | 
						|
		i.e. when the selector contains only the matchLabels component. Note that if no port is specified via
 | 
						|
		--port and the exposed resource has multiple ports, all will be re-used by the new service. Also if no
 | 
						|
		labels are specified, the new service will re-use the labels from the resource it exposes.
 | 
						|
 | 
						|
		Possible resources include (case insensitive):
 | 
						|
 | 
						|
		` + exposeResources)
 | 
						|
 | 
						|
	exposeExample = templates.Examples(i18n.T(`
 | 
						|
		# Create a service for a replicated nginx, which serves on port 80 and connects to the containers on port 8000.
 | 
						|
		kubectl expose rc nginx --port=80 --target-port=8000
 | 
						|
 | 
						|
		# Create a service for a replication controller identified by type and name specified in "nginx-controller.yaml", which serves on port 80 and connects to the containers on port 8000.
 | 
						|
		kubectl expose -f nginx-controller.yaml --port=80 --target-port=8000
 | 
						|
 | 
						|
		# Create a service for a pod valid-pod, which serves on port 444 with the name "frontend"
 | 
						|
		kubectl expose pod valid-pod --port=444 --name=frontend
 | 
						|
 | 
						|
		# Create a second service based on the above service, exposing the container port 8443 as port 443 with the name "nginx-https"
 | 
						|
		kubectl expose service nginx --port=443 --target-port=8443 --name=nginx-https
 | 
						|
 | 
						|
		# Create a service for a replicated streaming application on port 4100 balancing UDP traffic and named 'video-stream'.
 | 
						|
		kubectl expose rc streamer --port=4100 --protocol=udp --name=video-stream
 | 
						|
 | 
						|
		# Create a service for a replicated nginx using replica set, which serves on port 80 and connects to the containers on port 8000.
 | 
						|
		kubectl expose rs nginx --port=80 --target-port=8000
 | 
						|
 | 
						|
		# Create a service for an nginx deployment, which serves on port 80 and connects to the containers on port 8000.
 | 
						|
		kubectl expose deployment nginx --port=80 --target-port=8000`))
 | 
						|
)
 | 
						|
 | 
						|
type ExposeServiceOptions struct {
 | 
						|
	FilenameOptions resource.FilenameOptions
 | 
						|
	RecordFlags     *genericclioptions.RecordFlags
 | 
						|
	PrintFlags      *printers.PrintFlags
 | 
						|
	PrintObj        printers.ResourcePrinterFunc
 | 
						|
 | 
						|
	DryRun           bool
 | 
						|
	EnforceNamespace bool
 | 
						|
 | 
						|
	Generators                func(string) map[string]kubectl.Generator
 | 
						|
	CanBeExposed              func(kind schema.GroupKind) error
 | 
						|
	ClientForMapping          func(*meta.RESTMapping) (resource.RESTClient, error)
 | 
						|
	MapBasedSelectorForObject func(runtime.Object) (string, error)
 | 
						|
	PortsForObject            func(runtime.Object) ([]string, error)
 | 
						|
	ProtocolsForObject        func(runtime.Object) (map[string]string, error)
 | 
						|
	LabelsForObject           func(runtime.Object) (map[string]string, error)
 | 
						|
 | 
						|
	Namespace string
 | 
						|
	Mapper    meta.RESTMapper
 | 
						|
	Typer     runtime.ObjectTyper
 | 
						|
 | 
						|
	Builder *resource.Builder
 | 
						|
 | 
						|
	Recorder genericclioptions.Recorder
 | 
						|
	genericclioptions.IOStreams
 | 
						|
}
 | 
						|
 | 
						|
func NewExposeServiceOptions(ioStreams genericclioptions.IOStreams) *ExposeServiceOptions {
 | 
						|
	return &ExposeServiceOptions{
 | 
						|
		RecordFlags: genericclioptions.NewRecordFlags(),
 | 
						|
		PrintFlags:  printers.NewPrintFlags("exposed"),
 | 
						|
 | 
						|
		Recorder:  genericclioptions.NoopRecorder{},
 | 
						|
		IOStreams: ioStreams,
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func NewCmdExposeService(f cmdutil.Factory, streams genericclioptions.IOStreams) *cobra.Command {
 | 
						|
	o := NewExposeServiceOptions(streams)
 | 
						|
 | 
						|
	validArgs := []string{}
 | 
						|
	resources := regexp.MustCompile(`\s*,`).Split(exposeResources, -1)
 | 
						|
	for _, r := range resources {
 | 
						|
		validArgs = append(validArgs, strings.Fields(r)[0])
 | 
						|
	}
 | 
						|
 | 
						|
	cmd := &cobra.Command{
 | 
						|
		Use: "expose (-f FILENAME | TYPE NAME) [--port=port] [--protocol=TCP|UDP] [--target-port=number-or-name] [--name=name] [--external-ip=external-ip-of-service] [--type=type]",
 | 
						|
		DisableFlagsInUseLine: true,
 | 
						|
		Short:   i18n.T("Take a replication controller, service, deployment or pod and expose it as a new Kubernetes Service"),
 | 
						|
		Long:    exposeLong,
 | 
						|
		Example: exposeExample,
 | 
						|
		Run: func(cmd *cobra.Command, args []string) {
 | 
						|
			cmdutil.CheckErr(o.Complete(f, cmd))
 | 
						|
			cmdutil.CheckErr(o.RunExpose(cmd, args))
 | 
						|
		},
 | 
						|
		ValidArgs:  validArgs,
 | 
						|
		ArgAliases: kubectl.ResourceAliases(validArgs),
 | 
						|
	}
 | 
						|
 | 
						|
	o.RecordFlags.AddFlags(cmd)
 | 
						|
	o.PrintFlags.AddFlags(cmd)
 | 
						|
 | 
						|
	cmd.Flags().String("generator", "service/v2", i18n.T("The name of the API generator to use. There are 2 generators: 'service/v1' and 'service/v2'. The only difference between them is that service port in v1 is named 'default', while it is left unnamed in v2. Default is 'service/v2'."))
 | 
						|
	cmd.Flags().String("protocol", "", i18n.T("The network protocol for the service to be created. Default is 'TCP'."))
 | 
						|
	cmd.Flags().String("port", "", i18n.T("The port that the service should serve on. Copied from the resource being exposed, if unspecified"))
 | 
						|
	cmd.Flags().String("type", "", i18n.T("Type for this service: ClusterIP, NodePort, LoadBalancer, or ExternalName. Default is 'ClusterIP'."))
 | 
						|
	cmd.Flags().String("load-balancer-ip", "", i18n.T("IP to assign to the LoadBalancer. If empty, an ephemeral IP will be created and used (cloud-provider specific)."))
 | 
						|
	cmd.Flags().String("selector", "", i18n.T("A label selector to use for this service. Only equality-based selector requirements are supported. If empty (the default) infer the selector from the replication controller or replica set.)"))
 | 
						|
	cmd.Flags().StringP("labels", "l", "", "Labels to apply to the service created by this call.")
 | 
						|
	cmd.Flags().String("container-port", "", i18n.T("Synonym for --target-port"))
 | 
						|
	cmd.Flags().MarkDeprecated("container-port", "--container-port will be removed in the future, please use --target-port instead")
 | 
						|
	cmd.Flags().String("target-port", "", i18n.T("Name or number for the port on the container that the service should direct traffic to. Optional."))
 | 
						|
	cmd.Flags().String("external-ip", "", i18n.T("Additional external IP address (not managed by Kubernetes) to accept for the service. If this IP is routed to a node, the service can be accessed by this IP in addition to its generated service IP."))
 | 
						|
	cmd.Flags().String("overrides", "", i18n.T("An inline JSON override for the generated object. If this is non-empty, it is used to override the generated object. Requires that the object supply a valid apiVersion field."))
 | 
						|
	cmd.Flags().String("name", "", i18n.T("The name for the newly created object."))
 | 
						|
	cmd.Flags().String("session-affinity", "", i18n.T("If non-empty, set the session affinity for the service to this; legal values: 'None', 'ClientIP'"))
 | 
						|
	cmd.Flags().String("cluster-ip", "", i18n.T("ClusterIP to be assigned to the service. Leave empty to auto-allocate, or set to 'None' to create a headless service."))
 | 
						|
 | 
						|
	usage := "identifying the resource to expose a service"
 | 
						|
	cmdutil.AddFilenameOptionFlags(cmd, &o.FilenameOptions, usage)
 | 
						|
	cmdutil.AddDryRunFlag(cmd)
 | 
						|
	cmdutil.AddApplyAnnotationFlags(cmd)
 | 
						|
	return cmd
 | 
						|
}
 | 
						|
 | 
						|
func (o *ExposeServiceOptions) Complete(f cmdutil.Factory, cmd *cobra.Command) error {
 | 
						|
	o.DryRun = cmdutil.GetDryRunFlag(cmd)
 | 
						|
 | 
						|
	if o.DryRun {
 | 
						|
		o.PrintFlags.Complete("%s (dry run)")
 | 
						|
	}
 | 
						|
	printer, err := o.PrintFlags.ToPrinter()
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	o.PrintObj = printer.PrintObj
 | 
						|
 | 
						|
	o.RecordFlags.Complete(f.Command(cmd, false))
 | 
						|
	o.Recorder, err = o.RecordFlags.ToRecorder()
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	o.Generators = f.Generators
 | 
						|
	o.Builder = f.NewBuilder()
 | 
						|
	o.CanBeExposed = f.CanBeExposed
 | 
						|
	o.ClientForMapping = f.ClientForMapping
 | 
						|
	o.MapBasedSelectorForObject = f.MapBasedSelectorForObject
 | 
						|
	o.PortsForObject = f.PortsForObject
 | 
						|
	o.ProtocolsForObject = f.ProtocolsForObject
 | 
						|
	o.Mapper, o.Typer = f.Object()
 | 
						|
	o.LabelsForObject = f.LabelsForObject
 | 
						|
 | 
						|
	o.Namespace, o.EnforceNamespace, err = f.DefaultNamespace()
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
func (o *ExposeServiceOptions) RunExpose(cmd *cobra.Command, args []string) error {
 | 
						|
	r := o.Builder.
 | 
						|
		Internal().
 | 
						|
		ContinueOnError().
 | 
						|
		NamespaceParam(o.Namespace).DefaultNamespace().
 | 
						|
		FilenameParam(o.EnforceNamespace, &o.FilenameOptions).
 | 
						|
		ResourceTypeOrNameArgs(false, args...).
 | 
						|
		Flatten().
 | 
						|
		Do()
 | 
						|
	err := r.Err()
 | 
						|
	if err != nil {
 | 
						|
		return cmdutil.UsageErrorf(cmd, err.Error())
 | 
						|
	}
 | 
						|
 | 
						|
	// Get the generator, setup and validate all required parameters
 | 
						|
	generatorName := cmdutil.GetFlagString(cmd, "generator")
 | 
						|
	generators := o.Generators("expose")
 | 
						|
	generator, found := generators[generatorName]
 | 
						|
	if !found {
 | 
						|
		return cmdutil.UsageErrorf(cmd, "generator %q not found.", generatorName)
 | 
						|
	}
 | 
						|
	names := generator.ParamNames()
 | 
						|
 | 
						|
	err = r.Visit(func(info *resource.Info, err error) error {
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		mapping := info.ResourceMapping()
 | 
						|
		if err := o.CanBeExposed(mapping.GroupVersionKind.GroupKind()); err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		params := kubectl.MakeParams(cmd, names)
 | 
						|
		name := info.Name
 | 
						|
		if len(name) > validation.DNS1035LabelMaxLength {
 | 
						|
			name = name[:validation.DNS1035LabelMaxLength]
 | 
						|
		}
 | 
						|
		params["default-name"] = name
 | 
						|
 | 
						|
		// For objects that need a pod selector, derive it from the exposed object in case a user
 | 
						|
		// didn't explicitly specify one via --selector
 | 
						|
		if s, found := params["selector"]; found && kubectl.IsZero(s) {
 | 
						|
			s, err := o.MapBasedSelectorForObject(info.Object)
 | 
						|
			if err != nil {
 | 
						|
				return cmdutil.UsageErrorf(cmd, "couldn't retrieve selectors via --selector flag or introspection: %v", err)
 | 
						|
			}
 | 
						|
			params["selector"] = s
 | 
						|
		}
 | 
						|
 | 
						|
		isHeadlessService := params["cluster-ip"] == "None"
 | 
						|
 | 
						|
		// For objects that need a port, derive it from the exposed object in case a user
 | 
						|
		// didn't explicitly specify one via --port
 | 
						|
		if port, found := params["port"]; found && kubectl.IsZero(port) {
 | 
						|
			ports, err := o.PortsForObject(info.Object)
 | 
						|
			if err != nil {
 | 
						|
				return cmdutil.UsageErrorf(cmd, "couldn't find port via --port flag or introspection: %v", err)
 | 
						|
			}
 | 
						|
			switch len(ports) {
 | 
						|
			case 0:
 | 
						|
				if !isHeadlessService {
 | 
						|
					return cmdutil.UsageErrorf(cmd, "couldn't find port via --port flag or introspection")
 | 
						|
				}
 | 
						|
			case 1:
 | 
						|
				params["port"] = ports[0]
 | 
						|
			default:
 | 
						|
				params["ports"] = strings.Join(ports, ",")
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		// Always try to derive protocols from the exposed object, may use
 | 
						|
		// different protocols for different ports.
 | 
						|
		if _, found := params["protocol"]; found {
 | 
						|
			protocolsMap, err := o.ProtocolsForObject(info.Object)
 | 
						|
			if err != nil {
 | 
						|
				return cmdutil.UsageErrorf(cmd, "couldn't find protocol via introspection: %v", err)
 | 
						|
			}
 | 
						|
			if protocols := kubectl.MakeProtocols(protocolsMap); !kubectl.IsZero(protocols) {
 | 
						|
				params["protocols"] = protocols
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		if kubectl.IsZero(params["labels"]) {
 | 
						|
			labels, err := o.LabelsForObject(info.Object)
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			params["labels"] = kubectl.MakeLabels(labels)
 | 
						|
		}
 | 
						|
		if err = kubectl.ValidateParams(names, params); err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
		// Check for invalid flags used against the present generator.
 | 
						|
		if err := kubectl.EnsureFlagsValid(cmd, generators, generatorName); err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		// Generate new object
 | 
						|
		object, err := generator.Generate(params)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		if inline := cmdutil.GetFlagString(cmd, "overrides"); len(inline) > 0 {
 | 
						|
			codec := runtime.NewCodec(cmdutil.InternalVersionJSONEncoder(), cmdutil.InternalVersionDecoder())
 | 
						|
			object, err = cmdutil.Merge(codec, object, inline)
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		resourceMapper := &resource.Mapper{
 | 
						|
			ObjectTyper:  o.Typer,
 | 
						|
			RESTMapper:   o.Mapper,
 | 
						|
			ClientMapper: resource.ClientMapperFunc(o.ClientForMapping),
 | 
						|
			Decoder:      cmdutil.InternalVersionDecoder(),
 | 
						|
		}
 | 
						|
		info, err = resourceMapper.InfoForObject(object, nil)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
		if err := o.Recorder.Record(object); err != nil {
 | 
						|
			glog.V(4).Infof("error recording current command: %v", err)
 | 
						|
		}
 | 
						|
		info.Refresh(object, true)
 | 
						|
		if o.DryRun {
 | 
						|
			return o.PrintObj(object, o.Out)
 | 
						|
		}
 | 
						|
		if err := kubectl.CreateOrUpdateAnnotation(cmdutil.GetFlagBool(cmd, cmdutil.ApplyAnnotationsFlag), info.Object, cmdutil.InternalVersionJSONEncoder()); err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		// Serialize the object with the annotation applied.
 | 
						|
		object, err = resource.NewHelper(info.Client, info.Mapping).Create(o.Namespace, false, object)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		return o.PrintObj(info.AsVersioned(), o.Out)
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 |