Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Command *cli.Command = &cli.Command{ Name: commandName, Aliases: []string{"r"}, Usage: "Run your application with Docker Compose.", UsageText: "3lv run [options] <application-name>", Flags: []cli.Flag{ shared.SystemNameFlag( "The name of your system.", true, ), shared.HelmValuesFileFlag(), shared.RegistryFlag( "The registry to use for the image. Used for finding the image name.", ), }, Action: Run, }
Functions ¶
Types ¶
type ComposeFileVariables ¶
type HelmValues ¶
type HelmValues struct {
Env []struct {
Name string `yaml:"name"`
Value string `yaml:"value"`
} `yaml:"env"`
Service struct {
Port int `yaml:"port"`
TargetPort int `yaml:"targetPort"`
} `yaml:"service"`
}
func (HelmValues) GetEnvironmentVariablesMap ¶
func (v HelmValues) GetEnvironmentVariablesMap() map[string]string
Click to show internal directories.
Click to hide internal directories.