102 lines
2.8 KiB
Go
102 lines
2.8 KiB
Go
/*
|
|
Copyright 2017 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 commands
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
|
|
"errors"
|
|
|
|
"github.com/spf13/cobra"
|
|
"k8s.io/kubectl/pkg/kinflate"
|
|
"k8s.io/kubectl/pkg/kinflate/util/fs"
|
|
)
|
|
|
|
const manifestTemplate = `apiVersion: manifest.k8s.io/v1alpha1
|
|
kind: Manifest
|
|
metadata:
|
|
name: helloworld
|
|
description: helloworld does useful stuff.
|
|
namePrefix: some-prefix
|
|
# Labels to add to all objects and selectors.
|
|
# These labels would also be used to form the selector for apply --prune
|
|
# Named differently than “labels” to avoid confusion with metadata for this object
|
|
objectLabels:
|
|
app: helloworld
|
|
objectAnnotations:
|
|
note: This is a example annotation
|
|
resources:
|
|
- deployment.yaml
|
|
- service.yaml
|
|
# There could also be configmaps in Base, which would make these overlays
|
|
configmaps: []
|
|
# There could be secrets in Base, if just using a fork/rebase workflow
|
|
secrets: []
|
|
recursive: true
|
|
`
|
|
|
|
type initOptions struct {
|
|
}
|
|
|
|
// NewCmdInit makes the init command.
|
|
func NewCmdInit(out, errOut io.Writer, fs fs.FileSystem) *cobra.Command {
|
|
var o initOptions
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "init",
|
|
Short: "Creates a file called \"" + kinflate.KubeManifestFileName + "\" in the current directory",
|
|
Long: "Creates a file called \"" +
|
|
kinflate.KubeManifestFileName + "\" in the current directory with example values.",
|
|
Example: `init`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
err := o.Validate(cmd, args)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = o.Complete(cmd, args)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return o.RunInit(cmd, out, errOut, fs)
|
|
},
|
|
}
|
|
return cmd
|
|
}
|
|
|
|
// Validate validates init command.
|
|
func (o *initOptions) Validate(cmd *cobra.Command, args []string) error {
|
|
if len(args) > 0 {
|
|
return errors.New("The init command takes no arguments.")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Complete completes init command.
|
|
func (o *initOptions) Complete(cmd *cobra.Command, args []string) error {
|
|
return nil
|
|
}
|
|
|
|
// RunInit writes a manifest file.
|
|
func (o *initOptions) RunInit(
|
|
cmd *cobra.Command, out, errOut io.Writer, fs fs.FileSystem) error {
|
|
if _, err := fs.Stat(kinflate.KubeManifestFileName); err == nil {
|
|
return fmt.Errorf("%q already exists", kinflate.KubeManifestFileName)
|
|
}
|
|
return fs.WriteFile(kinflate.KubeManifestFileName, []byte(manifestTemplate))
|
|
}
|