Documentation ¶
Index ¶
- Constants
- Variables
- func CheckRunning(c *cc.CommonCtx) error
- func CreateCertsDir() (string, error)
- func CreateConfigDir() (string, error)
- func CreateDataDir() (string, error)
- func WriteConfig(w io.Writer, templ string, params *templateParams) error
- type BackupCmd
- type CLI
- type ConfigureCmd
- type ConsoleCmd
- type DeleteManifestCmd
- type ExportCmd
- type FormatVersion
- type GetManifestCmd
- type ImportCmd
- type InstallCmd
- type LoadCmd
- type ManifestCmd
- type RestoreCmd
- type RunCmd
- type SaveCmd
- type SetManifestCmd
- type StartCmd
- type StatusCmd
- type StopCmd
- type TestCmd
- type TestExecCmd
- type TestTemplateCmd
- type UninstallCmd
- type UpdateCmd
- type VersionCmd
Constants ¶
View Source
const ( CheckUnknown checkType = iota Check CheckRelation CheckPermission CheckDecision )
Variables ¶
View Source
var ErrNotRunning = errors.New("topaz is not running, use 'topaz start' or 'topaz run' to start")
Functions ¶
func CheckRunning ¶ added in v0.20.17
func CreateCertsDir ¶ added in v0.20.8
func CreateConfigDir ¶
func CreateDataDir ¶ added in v0.20.8
Types ¶
type BackupCmd ¶
type BackupCmd struct { File string `arg:"" default:"backup.tar.gz" help:"absolute file path to make backup to"` Format FormatVersion `flag:"" short:"f" enum:"3,2" name:"format" default:"3" help:"format of json data"` clients.Config }
type CLI ¶
type CLI struct { Start StartCmd `cmd:"" help:"start topaz in daemon mode"` Stop StopCmd `cmd:"" help:"stop topaz instance"` Status StatusCmd `cmd:"" help:"status of topaz daemon process"` Run RunCmd `cmd:"" help:"run topaz in console mode"` Manifest ManifestCmd `cmd:"" help:"manifest commands"` Load LoadCmd `cmd:"" help:"load manifest from file (DEPRECATED)"` Save SaveCmd `cmd:"" help:"save manifest to file (DEPRECATED)"` Import ImportCmd `cmd:"" help:"import directory objects"` Export ExportCmd `cmd:"" help:"export directory objects"` Backup BackupCmd `cmd:"" help:"backup directory data"` Restore RestoreCmd `cmd:"" help:"restore directory data"` Test TestCmd `cmd:"" help:"execute assertions"` Install InstallCmd `cmd:"" help:"install topaz container"` Configure ConfigureCmd `cmd:"" help:"configure topaz service"` Update UpdateCmd `cmd:"" help:"update topaz container version"` Uninstall UninstallCmd `cmd:"" help:"uninstall topaz container"` Version VersionCmd `cmd:"" help:"version information"` Console ConsoleCmd `cmd:"" help:"opens the console in the browser"` NoCheck bool `name:"no-check" short:"N" env:"TOPAZ_NO_CHECK" help:"disable local container status check"` }
type ConfigureCmd ¶
type ConfigureCmd struct { PolicyName string `short:"n" help:"policy name"` LocalPolicyImage string `short:"l" help:"local policy image name"` Resource string `short:"r" help:"resource url"` Stdout bool `short:"p" help:"generated configuration is printed to stdout but not saved"` EdgeDirectory bool `short:"d" help:"enable edge directory" default:"false"` SeedMetadata bool `short:"s" help:"enable seed metadata" default:"false"` }
type ConsoleCmd ¶ added in v0.30.0
type ConsoleCmd struct {
ConsoleAdress string `arg:"" default:"https://localhost:8080/ui/directory" help:"gateway address of the console service"`
}
type DeleteManifestCmd ¶ added in v0.30.0
type ExportCmd ¶
type ExportCmd struct { Directory string `short:"d" required:"" help:"directory to write .json data"` Format FormatVersion `flag:"" short:"f" enum:"3,2" name:"format" default:"3" help:"format of json data"` clients.Config }
type FormatVersion ¶ added in v0.30.1
type FormatVersion int
const ( V2 FormatVersion = 2 V3 FormatVersion = 3 )
type GetManifestCmd ¶ added in v0.30.0
type ImportCmd ¶
type ImportCmd struct { Directory string `short:"d" required:"" help:"directory containing .json data"` Format FormatVersion `flag:"" short:"f" enum:"3,2" name:"format" default:"3" help:"format of json data"` clients.Config }
type InstallCmd ¶
type LoadCmd ¶
type ManifestCmd ¶ added in v0.30.0
type ManifestCmd struct { Get GetManifestCmd `cmd:"" help:"get manifest"` Set SetManifestCmd `cmd:"" help:"set manifest"` Delete DeleteManifestCmd `cmd:"" help:"delete manifest"` }
type RestoreCmd ¶
type RestoreCmd struct { File string `arg:"" default:"backup.tar.gz" help:"absolute file path to local backup tarball"` Format FormatVersion `flag:"" short:"f" enum:"3,2" name:"format" default:"3" help:"format of json data"` clients.Config }
type RunCmd ¶
type RunCmd struct { ContainerName string `optional:"" default:"topaz" help:"container name"` ContainerVersion string `optional:"" default:"latest" help:"container version" ` Hostname string `optional:"" help:"hostname for docker to set"` Env []string `optional:"" short:"e" help:"additional environment variable names to be passed to container"` }
type SaveCmd ¶
type SetManifestCmd ¶ added in v0.30.0
type StartCmd ¶
type StartCmd struct { ContainerName string `optional:"" default:"topaz" help:"container name"` ContainerVersion string `optional:"" default:"latest" help:"container version" ` Hostname string `optional:"" help:"hostname for docker to set"` Env []string `optional:"" short:"e" help:"additional environment variable names to be passed to container"` }
type TestCmd ¶ added in v0.25.8
type TestCmd struct { Exec TestExecCmd `cmd:"" help:"execute assertions"` Template TestTemplateCmd `cmd:"" help:"output assertions template"` }
type TestExecCmd ¶ added in v0.25.8
type TestExecCmd struct { File string `arg:"" default:"assertions.json" help:"filepath to assertions file"` NoColor bool `flag:"" default:"false" help:"disable colorized output"` Summary bool `flag:"" default:"false" help:"display test summary"` clients.Config // contains filtered or unexported fields }
type TestTemplateCmd ¶ added in v0.25.8
type UninstallCmd ¶
type UninstallCmd struct{}
type UpdateCmd ¶ added in v0.20.19
type VersionCmd ¶
type VersionCmd struct{}
Click to show internal directories.
Click to hide internal directories.