kubernetes filename_flags 源码

  • 2022-09-18
  • 浏览 (353)

kubernetes filename_flags 代码

文件路径:/staging/src/k8s.io/cli-runtime/pkg/genericclioptions/filename_flags.go

/*
Copyright 2018 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 genericclioptions

import (
	"strings"

	"github.com/spf13/cobra"
	"github.com/spf13/pflag"

	"k8s.io/cli-runtime/pkg/resource"
)

// FileNameFlags are flags for processing files.
// Usage of this struct by itself is discouraged.
// These flags are composed by ResourceBuilderFlags
// which should be used instead.
type FileNameFlags struct {
	Usage string

	Filenames *[]string
	Kustomize *string
	Recursive *bool
}

// ToOptions creates a new FileNameOptions struct and sets FilenameOptions based on FileNameflags
func (o *FileNameFlags) ToOptions() resource.FilenameOptions {
	options := resource.FilenameOptions{}

	if o == nil {
		return options
	}

	if o.Recursive != nil {
		options.Recursive = *o.Recursive
	}
	if o.Filenames != nil {
		options.Filenames = *o.Filenames
	}
	if o.Kustomize != nil {
		options.Kustomize = *o.Kustomize
	}

	return options
}

// AddFlags binds file name flags to a given flagset
func (o *FileNameFlags) AddFlags(flags *pflag.FlagSet) {
	if o == nil {
		return
	}

	if o.Recursive != nil {
		flags.BoolVarP(o.Recursive, "recursive", "R", *o.Recursive, "Process the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.")
	}
	if o.Filenames != nil {
		flags.StringSliceVarP(o.Filenames, "filename", "f", *o.Filenames, o.Usage)
		annotations := make([]string, 0, len(resource.FileExtensions))
		for _, ext := range resource.FileExtensions {
			annotations = append(annotations, strings.TrimLeft(ext, "."))
		}
		flags.SetAnnotation("filename", cobra.BashCompFilenameExt, annotations)
	}
	if o.Kustomize != nil {
		flags.StringVarP(o.Kustomize, "kustomize", "k", *o.Kustomize,
			"Process a kustomization directory. This flag can't be used together with -f or -R.")
	}
}

相关信息

kubernetes 源码目录

相关文章

kubernetes builder_flags 源码

kubernetes builder_flags_fake 源码

kubernetes client_config 源码

kubernetes command_headers 源码

kubernetes command_headers_test 源码

kubernetes config_flags 源码

kubernetes config_flags_fake 源码

kubernetes doc 源码

kubernetes io_options 源码

kubernetes json_yaml_flags 源码

0  赞