|
|
@ -36,6 +36,7 @@ type Deployment struct {
|
|
|
|
MaxReplicas int
|
|
|
|
MaxReplicas int
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// DeploymentCommand is used to generate the kubernetes deployment yaml files.
|
|
|
|
func DeploymentCommand(c *cli.Context) error {
|
|
|
|
func DeploymentCommand(c *cli.Context) error {
|
|
|
|
nodePort := c.Int("nodePort")
|
|
|
|
nodePort := c.Int("nodePort")
|
|
|
|
// 0 to disable the nodePort type
|
|
|
|
// 0 to disable the nodePort type
|
|
|
@ -80,14 +81,17 @@ func DeploymentCommand(c *cli.Context) error {
|
|
|
|
return nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Category returns the category of the deployments.
|
|
|
|
func Category() string {
|
|
|
|
func Category() string {
|
|
|
|
return category
|
|
|
|
return category
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Clean cleans the generated deployment files.
|
|
|
|
func Clean() error {
|
|
|
|
func Clean() error {
|
|
|
|
return util.Clean(category)
|
|
|
|
return util.Clean(category)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// GenTemplates generates the deployment template files.
|
|
|
|
func GenTemplates(_ *cli.Context) error {
|
|
|
|
func GenTemplates(_ *cli.Context) error {
|
|
|
|
return util.InitTemplates(category, map[string]string{
|
|
|
|
return util.InitTemplates(category, map[string]string{
|
|
|
|
deployTemplateFile: deploymentTemplate,
|
|
|
|
deployTemplateFile: deploymentTemplate,
|
|
|
@ -95,10 +99,12 @@ func GenTemplates(_ *cli.Context) error {
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// RevertTemplate reverts the given template file to the default value.
|
|
|
|
func RevertTemplate(name string) error {
|
|
|
|
func RevertTemplate(name string) error {
|
|
|
|
return util.CreateTemplate(category, name, deploymentTemplate)
|
|
|
|
return util.CreateTemplate(category, name, deploymentTemplate)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Update updates the template files to the templates built in current goctl.
|
|
|
|
func Update() error {
|
|
|
|
func Update() error {
|
|
|
|
err := Clean()
|
|
|
|
err := Clean()
|
|
|
|
if err != nil {
|
|
|
|
if err != nil {
|
|
|
|