- New flag `--specignore` has been added for command fission spec [list | validate | apply | destroy] - This flag is optional. - The default spec ignore file name is `.specignore`, if the flag is not used - The spec ignore file existence will be checked in the `--specdir` path - If spec ignore file is passed to the flag, with a name other than .specignore and if it does not exist in the `--specdir` path then an error will be returned. - `--specdir` will be the root path against which the patterns will be evaluated - The behaviour of the spec ignore file will be similar to .gitignore (only for yml and yaml files). For reference: http://git-scm.com/docs/gitignore
82 lines
2.4 KiB
Go
82 lines
2.4 KiB
Go
/*
|
|
Copyright 2019 The Fission 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 spec
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
wrapper "github.com/fission/fission/pkg/fission-cli/cliwrapper/driver/cobra"
|
|
"github.com/fission/fission/pkg/fission-cli/flag"
|
|
)
|
|
|
|
func Commands() *cobra.Command {
|
|
initCmd := &cobra.Command{
|
|
Use: "init",
|
|
Short: "Create an initial declarative application specification",
|
|
RunE: wrapper.Wrapper(Init),
|
|
}
|
|
wrapper.SetFlags(initCmd, flag.FlagSet{
|
|
Optional: []flag.Flag{flag.SpecName, flag.SpecDeployID, flag.SpecDir},
|
|
})
|
|
|
|
validateCmd := &cobra.Command{
|
|
Use: "validate",
|
|
Short: "Validate declarative application specification",
|
|
RunE: wrapper.Wrapper(Validate),
|
|
}
|
|
wrapper.SetFlags(validateCmd, flag.FlagSet{
|
|
Optional: []flag.Flag{flag.SpecDir, flag.SpecIgnore},
|
|
})
|
|
|
|
applyCmd := &cobra.Command{
|
|
Use: "apply",
|
|
Short: "Create, update, or delete resources from application specification",
|
|
RunE: wrapper.Wrapper(Apply),
|
|
}
|
|
wrapper.SetFlags(applyCmd, flag.FlagSet{
|
|
Optional: []flag.Flag{flag.SpecDir, flag.SpecIgnore, flag.SpecDelete, flag.SpecWait, flag.SpecWatch, flag.SpecValidation},
|
|
})
|
|
|
|
destroyCmd := &cobra.Command{
|
|
Use: "destroy",
|
|
Short: "Delete all Fission resources in the application specification",
|
|
RunE: wrapper.Wrapper(Destroy),
|
|
}
|
|
wrapper.SetFlags(destroyCmd, flag.FlagSet{
|
|
Optional: []flag.Flag{flag.SpecDir, flag.SpecIgnore},
|
|
})
|
|
|
|
listCmd := &cobra.Command{
|
|
Use: "list",
|
|
Short: "List all the resources that were created through this spec",
|
|
RunE: wrapper.Wrapper(List),
|
|
}
|
|
wrapper.SetFlags(listCmd, flag.FlagSet{
|
|
Optional: []flag.Flag{flag.SpecDeployID, flag.SpecDir, flag.SpecIgnore},
|
|
})
|
|
|
|
command := &cobra.Command{
|
|
Use: "spec",
|
|
Aliases: []string{"specs"},
|
|
Short: "Manage a declarative application specification",
|
|
}
|
|
|
|
command.AddCommand(initCmd, validateCmd, applyCmd, listCmd, destroyCmd)
|
|
|
|
return command
|
|
}
|