Documentation
¶
Index ¶
- Variables
- func AddFn(name string, repository string, version string, addConfig bool, ...) error
- func AllImages(w io.Writer, config *cfg.Svc, manifests *manifest.Svc, match *matcher.Svc) error
- func ContainerResourcesForDeploy(compName string, envName string, w io.Writer, config *cfg.Svc, ...) error
- func ContainerResourcesForDeploys(w io.Writer, config *cfg.Svc, match *matcher.Svc) error
- func DeployFn(w io.Writer, id string, config *cfg.Svc) error
- func DeploysAsYaml(l cfg.Deploys, w io.Writer) error
- func DeploysFn(w io.Writer, config *cfg.Svc) error
- func Execute() error
- func GenerateFn(config *cfg.Svc, manifests *manifest.Svc) error
- func ImagesForDeploy(environment string, component string, w io.Writer, config *cfg.Svc, ...) error
- func InitFn(force bool, config *cfg.Svc) error
- func SetFn(path string, value string, setType string, config *cfg.Svc) error
- func ShowFn(thing string, environment string, component string, w io.Writer, ...) error
- func VerifyFn(w io.Writer, config *cfg.Svc, manifests *manifest.Svc, lock *cfg.Lock, ...) error
- func Vs(w io.Writer) error
- type DeployContainerResources
Constants ¶
This section is empty.
Variables ¶
View Source
var DeployCmd = &cobra.Command{ Use: "deploy <deployId>", Short: "deploy", Args: cobra.ExactArgs(1), RunE: func(cmd *cobra.Command, args []string) error { return DeployFn(cmd.OutOrStdout(), args[0], newConfigService()) }, }
View Source
var DeploysCmd = &cobra.Command{ Use: "deploys", Short: "generate deploy manifests", Args: cobra.ExactArgs(0), RunE: func(cmd *cobra.Command, args []string) error { return DeploysFn(cmd.OutOrStdout(), newConfigService()) }, }
View Source
var Version = ""
Functions ¶
func ImagesForDeploy ¶
Types ¶
type DeployContainerResources ¶
type DeployContainerResources struct { Name string Resources matcher.ContainerResources }
Click to show internal directories.
Click to hide internal directories.