create_configmap.go 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. Copyright 2016 The Kubernetes Authors.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package cmd
  14. import (
  15. "fmt"
  16. "io"
  17. "github.com/renstrom/dedent"
  18. "github.com/spf13/cobra"
  19. "k8s.io/kubernetes/pkg/kubectl"
  20. cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
  21. )
  22. var (
  23. configMapLong = dedent.Dedent(`
  24. Create a configmap based on a file, directory, or specified literal value.
  25. A single configmap may package one or more key/value pairs.
  26. When creating a configmap based on a file, the key will default to the basename of the file, and the value will
  27. default to the file content. If the basename is an invalid key, you may specify an alternate key.
  28. When creating a configmap based on a directory, each file whose basename is a valid key in the directory will be
  29. packaged into the configmap. Any directory entries except regular files are ignored (e.g. subdirectories,
  30. symlinks, devices, pipes, etc).
  31. `)
  32. configMapExample = dedent.Dedent(`
  33. # Create a new configmap named my-config with keys for each file in folder bar
  34. kubectl create configmap my-config --from-file=path/to/bar
  35. # Create a new configmap named my-config with specified keys instead of names on disk
  36. kubectl create configmap my-config --from-file=key1=/path/to/bar/file1.txt --from-file=key2=/path/to/bar/file2.txt
  37. # Create a new configmap named my-config with key1=config1 and key2=config2
  38. kubectl create configmap my-config --from-literal=key1=config1 --from-literal=key2=config2`)
  39. )
  40. // ConfigMap is a command to ease creating ConfigMaps.
  41. func NewCmdCreateConfigMap(f *cmdutil.Factory, cmdOut io.Writer) *cobra.Command {
  42. cmd := &cobra.Command{
  43. Use: "configmap NAME [--from-file=[key=]source] [--from-literal=key1=value1] [--dry-run]",
  44. Aliases: []string{"cm"},
  45. Short: "Create a configmap from a local file, directory or literal value",
  46. Long: configMapLong,
  47. Example: configMapExample,
  48. Run: func(cmd *cobra.Command, args []string) {
  49. err := CreateConfigMap(f, cmdOut, cmd, args)
  50. cmdutil.CheckErr(err)
  51. },
  52. }
  53. cmdutil.AddApplyAnnotationFlags(cmd)
  54. cmdutil.AddValidateFlags(cmd)
  55. cmdutil.AddPrinterFlags(cmd)
  56. cmdutil.AddGeneratorFlags(cmd, cmdutil.ConfigMapV1GeneratorName)
  57. cmd.Flags().StringSlice("from-file", []string{}, "Key files can be specified using their file path, in which case a default name will be given to them, or optionally with a name and file path, in which case the given name will be used. Specifying a directory will iterate each named file in the directory that is a valid configmap key.")
  58. cmd.Flags().StringSlice("from-literal", []string{}, "Specify a key and literal value to insert in configmap (i.e. mykey=somevalue)")
  59. return cmd
  60. }
  61. // CreateConfigMap is the implementation of the create configmap command.
  62. func CreateConfigMap(f *cmdutil.Factory, cmdOut io.Writer, cmd *cobra.Command, args []string) error {
  63. name, err := NameFromCommandArgs(cmd, args)
  64. if err != nil {
  65. return err
  66. }
  67. var generator kubectl.StructuredGenerator
  68. switch generatorName := cmdutil.GetFlagString(cmd, "generator"); generatorName {
  69. case cmdutil.ConfigMapV1GeneratorName:
  70. generator = &kubectl.ConfigMapGeneratorV1{
  71. Name: name,
  72. FileSources: cmdutil.GetFlagStringSlice(cmd, "from-file"),
  73. LiteralSources: cmdutil.GetFlagStringSlice(cmd, "from-literal"),
  74. }
  75. default:
  76. return cmdutil.UsageError(cmd, fmt.Sprintf("Generator: %s not supported.", generatorName))
  77. }
  78. return RunCreateSubcommand(f, cmd, cmdOut, &CreateSubcommandOptions{
  79. Name: name,
  80. StructuredGenerator: generator,
  81. DryRun: cmdutil.GetDryRunFlag(cmd),
  82. OutputFormat: cmdutil.GetFlagString(cmd, "output"),
  83. })
  84. }