123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- /*
- Copyright 2015 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 (
- "fmt"
- "io"
- "github.com/renstrom/dedent"
- "k8s.io/kubernetes/pkg/kubectl"
- cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
- "k8s.io/kubernetes/pkg/kubectl/resource"
- utilerrors "k8s.io/kubernetes/pkg/util/errors"
- "github.com/spf13/cobra"
- )
- // AutoscaleOptions is the start of the data required to perform the operation. As new fields are added, add them here instead of
- // referencing the cmd.Flags()
- type AutoscaleOptions struct {
- Filenames []string
- Recursive bool
- }
- var (
- autoscaleLong = dedent.Dedent(`
- Creates an autoscaler that automatically chooses and sets the number of pods that run in a kubernetes cluster.
- Looks up a Deployment, ReplicaSet, or ReplicationController by name and creates an autoscaler that uses the given resource as a reference.
- An autoscaler can automatically increase or decrease number of pods deployed within the system as needed.`)
- autoscaleExample = dedent.Dedent(`
- # Auto scale a deployment "foo", with the number of pods between 2 and 10, target CPU utilization specified so a default autoscaling policy will be used:
- kubectl autoscale deployment foo --min=2 --max=10
- # Auto scale a replication controller "foo", with the number of pods between 1 and 5, target CPU utilization at 80%:
- kubectl autoscale rc foo --max=5 --cpu-percent=80`)
- )
- func NewCmdAutoscale(f *cmdutil.Factory, out io.Writer) *cobra.Command {
- options := &AutoscaleOptions{}
- validArgs := []string{"deployment", "replicaset", "replicationcontroller"}
- argAliases := kubectl.ResourceAliases(validArgs)
- cmd := &cobra.Command{
- Use: "autoscale (-f FILENAME | TYPE NAME | TYPE/NAME) [--min=MINPODS] --max=MAXPODS [--cpu-percent=CPU] [flags]",
- Short: "Auto-scale a Deployment, ReplicaSet, or ReplicationController",
- Long: autoscaleLong,
- Example: autoscaleExample,
- Run: func(cmd *cobra.Command, args []string) {
- err := RunAutoscale(f, out, cmd, args, options)
- cmdutil.CheckErr(err)
- },
- ValidArgs: validArgs,
- ArgAliases: argAliases,
- }
- cmdutil.AddPrinterFlags(cmd)
- cmd.Flags().String("generator", "horizontalpodautoscaler/v1", "The name of the API generator to use. Currently there is only 1 generator.")
- cmd.Flags().Int("min", -1, "The lower limit for the number of pods that can be set by the autoscaler. If it's not specified or negative, the server will apply a default value.")
- cmd.Flags().Int("max", -1, "The upper limit for the number of pods that can be set by the autoscaler. Required.")
- cmd.MarkFlagRequired("max")
- cmd.Flags().Int("cpu-percent", -1, fmt.Sprintf("The target average CPU utilization (represented as a percent of requested CPU) over all the pods. If it's not specified or negative, a default autoscaling policy will be used."))
- cmd.Flags().String("name", "", "The name for the newly created object. If not specified, the name of the input resource will be used.")
- cmdutil.AddDryRunFlag(cmd)
- usage := "Filename, directory, or URL to a file identifying the resource to autoscale."
- kubectl.AddJsonFilenameFlag(cmd, &options.Filenames, usage)
- cmdutil.AddRecursiveFlag(cmd, &options.Recursive)
- cmdutil.AddApplyAnnotationFlags(cmd)
- cmdutil.AddRecordFlag(cmd)
- cmdutil.AddInclude3rdPartyFlags(cmd)
- return cmd
- }
- func RunAutoscale(f *cmdutil.Factory, out io.Writer, cmd *cobra.Command, args []string, options *AutoscaleOptions) error {
- namespace, enforceNamespace, err := f.DefaultNamespace()
- if err != nil {
- return err
- }
- // validate flags
- if err := validateFlags(cmd); err != nil {
- return err
- }
- mapper, typer := f.Object(cmdutil.GetIncludeThirdPartyAPIs(cmd))
- r := resource.NewBuilder(mapper, typer, resource.ClientMapperFunc(f.ClientForMapping), f.Decoder(true)).
- ContinueOnError().
- NamespaceParam(namespace).DefaultNamespace().
- FilenameParam(enforceNamespace, options.Recursive, options.Filenames...).
- ResourceTypeOrNameArgs(false, args...).
- Flatten().
- Do()
- err = r.Err()
- if err != nil {
- return err
- }
- // Get the generator, setup and validate all required parameters
- generatorName := cmdutil.GetFlagString(cmd, "generator")
- generators := f.Generators("autoscale")
- generator, found := generators[generatorName]
- if !found {
- return cmdutil.UsageError(cmd, fmt.Sprintf("generator %q not found.", generatorName))
- }
- names := generator.ParamNames()
- count := 0
- err = r.Visit(func(info *resource.Info, err error) error {
- if err != nil {
- return err
- }
- mapping := info.ResourceMapping()
- if err := f.CanBeAutoscaled(mapping.GroupVersionKind.GroupKind()); err != nil {
- return err
- }
- name := info.Name
- params := kubectl.MakeParams(cmd, names)
- params["default-name"] = name
- params["scaleRef-kind"] = mapping.GroupVersionKind.Kind
- params["scaleRef-name"] = name
- params["scaleRef-apiVersion"] = mapping.GroupVersionKind.GroupVersion().String()
- 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
- }
- resourceMapper := &resource.Mapper{
- ObjectTyper: typer,
- RESTMapper: mapper,
- ClientMapper: resource.ClientMapperFunc(f.ClientForMapping),
- Decoder: f.Decoder(true),
- }
- hpa, err := resourceMapper.InfoForObject(object, nil)
- if err != nil {
- return err
- }
- if cmdutil.ShouldRecord(cmd, hpa) {
- if err := cmdutil.RecordChangeCause(hpa.Object, f.Command()); err != nil {
- return err
- }
- object = hpa.Object
- }
- if cmdutil.GetDryRunFlag(cmd) {
- return f.PrintObject(cmd, mapper, object, out)
- }
- if err := kubectl.CreateOrUpdateAnnotation(cmdutil.GetFlagBool(cmd, cmdutil.ApplyAnnotationsFlag), hpa, f.JSONEncoder()); err != nil {
- return err
- }
- object, err = resource.NewHelper(hpa.Client, hpa.Mapping).Create(namespace, false, object)
- if err != nil {
- return err
- }
- count++
- if len(cmdutil.GetFlagString(cmd, "output")) > 0 {
- return f.PrintObject(cmd, mapper, object, out)
- }
- cmdutil.PrintSuccess(mapper, false, out, info.Mapping.Resource, info.Name, "autoscaled")
- return nil
- })
- if err != nil {
- return err
- }
- if count == 0 {
- return fmt.Errorf("no objects passed to autoscale")
- }
- return nil
- }
- func validateFlags(cmd *cobra.Command) error {
- errs := []error{}
- max, min := cmdutil.GetFlagInt(cmd, "max"), cmdutil.GetFlagInt(cmd, "min")
- if max < 1 {
- errs = append(errs, fmt.Errorf("--max=MAXPODS is required and must be at least 1, max: %d", max))
- }
- if max < min {
- errs = append(errs, fmt.Errorf("--max=MAXPODS must be larger or equal to --min=MINPODS, max: %d, min: %d", max, min))
- }
- return utilerrors.NewAggregate(errs)
- }
|