Documentation
¶
Index ¶
- Variables
- func PrintBuildEnvsList(ctx context.Context, out io.Writer, opts Options) error
- func PrintModulesList(ctx context.Context, out io.Writer, opts Options) error
- func PrintProfilesList(ctx context.Context, out io.Writer, opts Options) error
- type BuildEnv
- type BuildEnvOptions
- type Options
- type ProfilesOptions
Constants ¶
This section is empty.
Variables ¶
View Source
var ( BuildEnvs = struct { Unspecified BuildEnv Local BuildEnv GoogleCloudBuild BuildEnv Cluster BuildEnv }{ Local: "local", GoogleCloudBuild: "googleCloudBuild", Cluster: "cluster", } )
Functions ¶
func PrintBuildEnvsList ¶
func PrintModulesList ¶
Types ¶
type BuildEnvOptions ¶
type BuildEnvOptions struct {
// Profiles is the slice of profile names to activate.
Profiles []string
}
BuildEnvOptions holds flag values for various `skaffold inspect build-env` commands
type Options ¶
type Options struct {
// Filename is the `skaffold.yaml` file path
Filename string
// OutFormat is the output format. One of: json
OutFormat string
// Modules is the module filter for specific commands
Modules []string
ProfilesOptions
BuildEnvOptions
}
Options holds flag values for the various `skaffold inspect` commands
type ProfilesOptions ¶
type ProfilesOptions struct {
// BuildEnv is the build-env filter for command output. One of: local, googleCloudBuild, cluster.
BuildEnv BuildEnv
}
ProfilesOptions holds flag values for various `skaffold inspect profiles` commands
Click to show internal directories.
Click to hide internal directories.