mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 12:18:16 +00:00 
			
		
		
		
	Part of the problem is that these are duplicated between the different commands. I'm planning to consolidate these further.
		
			
				
	
	
		
			119 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			119 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
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"
 | 
						|
	"runtime"
 | 
						|
 | 
						|
	"github.com/spf13/cobra"
 | 
						|
 | 
						|
	"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/cmd/util/editor"
 | 
						|
	"k8s.io/kubernetes/pkg/printers"
 | 
						|
	"k8s.io/kubernetes/pkg/util/i18n"
 | 
						|
)
 | 
						|
 | 
						|
var (
 | 
						|
	editLong = templates.LongDesc(i18n.T(`
 | 
						|
		Edit a resource from the default editor.
 | 
						|
 | 
						|
		The edit command allows you to directly edit any API resource you can retrieve via the
 | 
						|
		command line tools. It will open the editor defined by your KUBE_EDITOR, or EDITOR
 | 
						|
		environment variables, or fall back to 'vi' for Linux or 'notepad' for Windows.
 | 
						|
		You can edit multiple objects, although changes are applied one at a time. The command
 | 
						|
		accepts filenames as well as command line arguments, although the files you point to must
 | 
						|
		be previously saved versions of resources.
 | 
						|
 | 
						|
		Editing is done with the API version used to fetch the resource.
 | 
						|
		To edit using a specific API version, fully-qualify the resource, version, and group.
 | 
						|
 | 
						|
		The default format is YAML. To edit in JSON, specify "-o json".
 | 
						|
 | 
						|
		The flag --windows-line-endings can be used to force Windows line endings,
 | 
						|
		otherwise the default for your operating system will be used.
 | 
						|
 | 
						|
		In the event an error occurs while updating, a temporary file will be created on disk
 | 
						|
		that contains your unapplied changes. The most common error when updating a resource
 | 
						|
		is another editor changing the resource on the server. When this occurs, you will have
 | 
						|
		to apply your changes to the newer version of the resource, or update your temporary
 | 
						|
		saved copy to include the latest resource version.`))
 | 
						|
 | 
						|
	editExample = templates.Examples(i18n.T(`
 | 
						|
		# Edit the service named 'docker-registry':
 | 
						|
		kubectl edit svc/docker-registry
 | 
						|
 | 
						|
		# Use an alternative editor
 | 
						|
		KUBE_EDITOR="nano" kubectl edit svc/docker-registry
 | 
						|
 | 
						|
		# Edit the job 'myjob' in JSON using the v1 API format:
 | 
						|
		kubectl edit job.v1.batch/myjob -o json
 | 
						|
 | 
						|
		# Edit the deployment 'mydeployment' in YAML and save the modified config in its annotation:
 | 
						|
		kubectl edit deployment/mydeployment -o yaml --save-config`))
 | 
						|
)
 | 
						|
 | 
						|
func NewCmdEdit(f cmdutil.Factory, out, errOut io.Writer) *cobra.Command {
 | 
						|
	options := &editor.EditOptions{
 | 
						|
		EditMode: editor.NormalEditMode,
 | 
						|
	}
 | 
						|
 | 
						|
	// retrieve a list of handled resources from printer as valid args
 | 
						|
	validArgs, argAliases := []string{}, []string{}
 | 
						|
	p, err := f.Printer(nil, printers.PrintOptions{
 | 
						|
		ColumnLabels: []string{},
 | 
						|
	})
 | 
						|
	cmdutil.CheckErr(err)
 | 
						|
	if p != nil {
 | 
						|
		validArgs = p.HandledResources()
 | 
						|
		argAliases = kubectl.ResourceAliases(validArgs)
 | 
						|
	}
 | 
						|
 | 
						|
	cmd := &cobra.Command{
 | 
						|
		Use:     "edit (RESOURCE/NAME | -f FILENAME)",
 | 
						|
		Short:   i18n.T("Edit a resource on the server"),
 | 
						|
		Long:    editLong,
 | 
						|
		Example: fmt.Sprintf(editExample),
 | 
						|
		Run: func(cmd *cobra.Command, args []string) {
 | 
						|
			options.ChangeCause = f.Command(cmd, false)
 | 
						|
			if err := options.Complete(f, out, errOut, args); err != nil {
 | 
						|
				cmdutil.CheckErr(err)
 | 
						|
			}
 | 
						|
			if err := options.Run(); err != nil {
 | 
						|
				cmdutil.CheckErr(err)
 | 
						|
			}
 | 
						|
		},
 | 
						|
		ValidArgs:  validArgs,
 | 
						|
		ArgAliases: argAliases,
 | 
						|
	}
 | 
						|
	usage := "to use to edit the resource"
 | 
						|
	cmdutil.AddFilenameOptionFlags(cmd, &options.FilenameOptions, usage)
 | 
						|
	cmdutil.AddValidateOptionFlags(cmd, &options.ValidateOptions)
 | 
						|
	cmd.Flags().StringVarP(&options.Output, "output", "o", "yaml", "Output format. One of: yaml|json.")
 | 
						|
 | 
						|
	cmd.Flags().BoolVar(&options.WindowsLineEndings, "windows-line-endings", runtime.GOOS == "windows",
 | 
						|
		"Defaults to the line ending native to your platform.")
 | 
						|
 | 
						|
	cmdutil.AddApplyAnnotationVarFlags(cmd, &options.ApplyAnnotation)
 | 
						|
	cmdutil.AddRecordVarFlag(cmd, &options.Record)
 | 
						|
	cmdutil.AddInclude3rdPartyVarFlags(cmd, &options.Include3rdParty)
 | 
						|
	return cmd
 | 
						|
}
 |