Documentation ¶
Index ¶
- Variables
- func Execute()
- type AddCmd
- type AddCmdFlags
- type DeployCmd
- type DeployCmdFlags
- type DownCmd
- type DownCmdFlags
- type EnterCmd
- type EnterCmdFlags
- type InitCmd
- type InitCmdFlags
- type InstallCmd
- type InstallCmdFlags
- type ListCmd
- type ListCmdFlags
- type RemoveCmd
- func (cmd *RemoveCmd) RunRemoveDeployment(cobraCmd *cobra.Command, args []string)
- func (cmd *RemoveCmd) RunRemovePackage(cobraCmd *cobra.Command, args []string)
- func (cmd *RemoveCmd) RunRemovePort(cobraCmd *cobra.Command, args []string)
- func (cmd *RemoveCmd) RunRemoveSync(cobraCmd *cobra.Command, args []string)
- type ResetCmd
- type ResetCmdFlags
- type StatusCmd
- type StatusCmdFlags
- type UpCmd
- type UpCmdFlags
- type UpgradeCmd
- type UpgradeCmdFlags
Constants ¶
This section is empty.
Variables ¶
var InitCmdFlagsDefault = &InitCmdFlags{ reconfigure: false, overwrite: false, skipQuestions: false, templateRepoURL: "https://github.com/covexo/devspace-templates.git", templateRepoPath: "", language: "", cloudProvider: "", useDevSpaceCloud: false, addDevSpaceCloudToLocalKubernetes: false, namespace: "", createInternalRegistry: false, }
InitCmdFlagsDefault are the default flags for InitCmdFlags
var UpFlagsDefault = &UpCmdFlags{ tiller: true, open: "cmd", initRegistries: true, build: false, sync: true, terminal: true, switchContext: false, exitAfterDeploy: false, allyes: false, deploy: false, portforwarding: true, verboseSync: false, container: "", namespace: "", labelSelector: "", }
UpFlagsDefault are the default flags for UpCmdFlags
Functions ¶
Types ¶
type AddCmd ¶ added in v0.2.0
type AddCmd struct {
// contains filtered or unexported fields
}
AddCmd holds the information needed for the add command
func (*AddCmd) RunAddDeployment ¶
RunAddDeployment executes the add deployment command logic
func (*AddCmd) RunAddPackage ¶ added in v1.1.0
RunAddPackage executes the add package command logic
func (*AddCmd) RunAddPort ¶ added in v0.2.0
RunAddPort executes the add port command logic
type AddCmdFlags ¶ added in v0.2.0
type AddCmdFlags struct { }
AddCmdFlags holds the possible flags for the add command
type DeployCmd ¶
type DeployCmd struct {
// contains filtered or unexported fields
}
DeployCmd holds the required data for the down cmd
type DeployCmdFlags ¶
type DeployCmdFlags struct { Namespace string KubeContext string Config string ConfigOverwrite string DockerTarget string CloudTarget string SwitchContext bool SkipBuild bool GitBranch string }
DeployCmdFlags holds the possible down cmd flags
type DownCmd ¶
type DownCmd struct {
// contains filtered or unexported fields
}
DownCmd holds the required data for the down cmd
type DownCmdFlags ¶
type DownCmdFlags struct {
// contains filtered or unexported fields
}
DownCmdFlags holds the possible down cmd flags
type EnterCmd ¶ added in v1.1.0
type EnterCmd struct {
// contains filtered or unexported fields
}
EnterCmd is a struct that defines a command call for "enter"
type EnterCmdFlags ¶ added in v1.1.0
type EnterCmdFlags struct {
// contains filtered or unexported fields
}
EnterCmdFlags are the flags available for the enter-command
type InitCmd ¶
type InitCmd struct {
// contains filtered or unexported fields
}
InitCmd is a struct that defines a command call for "init"
type InitCmdFlags ¶
type InitCmdFlags struct {
// contains filtered or unexported fields
}
InitCmdFlags are the flags available for the init-command
type InstallCmd ¶ added in v0.1.1
type InstallCmd struct {
// contains filtered or unexported fields
}
InstallCmd is a struct that defines a command call for "install"
type InstallCmdFlags ¶ added in v0.1.1
type InstallCmdFlags struct { }
InstallCmdFlags are the flags available for the install-command
type ListCmd ¶ added in v0.2.0
type ListCmd struct {
// contains filtered or unexported fields
}
ListCmd holds the information needed for the list command
func (*ListCmd) RunListPackage ¶ added in v1.1.0
RunListPackage runs the list sync command logic
func (*ListCmd) RunListPort ¶ added in v0.2.0
RunListPort runs the list port command logic
func (*ListCmd) RunListService ¶
RunListService runs the list service command logic
type ListCmdFlags ¶ added in v0.2.0
type ListCmdFlags struct { }
ListCmdFlags holds the possible flags for the list command
type RemoveCmd ¶ added in v0.2.0
type RemoveCmd struct {
// contains filtered or unexported fields
}
RemoveCmd holds the information needed for the remove command
func (*RemoveCmd) RunRemoveDeployment ¶
RunRemoveDeployment executes the specified deployment
func (*RemoveCmd) RunRemovePackage ¶ added in v1.1.0
RunRemovePackage executes the remove package command logic
func (*RemoveCmd) RunRemovePort ¶ added in v0.2.0
RunRemovePort executes the remove port command logic
type ResetCmd ¶
type ResetCmd struct {
// contains filtered or unexported fields
}
ResetCmd holds the needed command information
type ResetCmdFlags ¶
type ResetCmdFlags struct {
// contains filtered or unexported fields
}
ResetCmdFlags holds the possible reset cmd flags
type StatusCmd ¶ added in v0.2.0
type StatusCmd struct {
// contains filtered or unexported fields
}
StatusCmd holds the information needed for the status command
type StatusCmdFlags ¶ added in v0.2.0
type StatusCmdFlags struct { }
StatusCmdFlags holds the possible flags for the list command
type UpCmd ¶
type UpCmd struct {
// contains filtered or unexported fields
}
UpCmd is a struct that defines a command call for "up"
type UpCmdFlags ¶
type UpCmdFlags struct {
// contains filtered or unexported fields
}
UpCmdFlags are the flags available for the up-command
type UpgradeCmd ¶ added in v0.1.0
type UpgradeCmd struct {
// contains filtered or unexported fields
}
UpgradeCmd is a struct that defines a command call for "upgrade"
type UpgradeCmdFlags ¶ added in v0.1.0
type UpgradeCmdFlags struct { }
UpgradeCmdFlags are the flags available for the upgrade-command