Versions in this module Expand all Collapse all v4 v4.1.2 Jun 10, 2022 v4.1.1 Jun 10, 2022 Changes in this version + const ABIMode + const MigrateMode + const NoFDsMode + const NormalMode + const RenumberMode + const ResetMode + const TunnelMode + func ConvertToLibpodEvent(e Event) *libpodEvents.Event + func FilterIDFn(id []string) func(Identifier) bool + func FilterIDOrNameFn(id []string) func(IDOrNamed) bool + func FilterNameFn(name []string) func(Named) bool + func FilterNamesFn(name []string) func(Names) bool + func ToPodSpecGen(s specgen.PodSpecGenerator, p *PodCreateOptions) (*specgen.PodSpecGenerator, error) + func ValidatePodStatsOptions(args []string, options *PodStatsOptions) error + type AttachOptions struct + DetachKeys string + Latest bool + NoStdin bool + SigProxy bool + Stderr *os.File + Stdin *os.File + Stdout *os.File + type AuthConfig struct + type AuthReport struct + IdentityToken string + Status string + type AutoUpdateOptions struct + Authfile string + DryRun bool + Rollback bool + type AutoUpdateReport struct + ContainerID string + ContainerName string + ImageName string + Policy string + SystemdUnit string + Updated string + type BoolReport struct + Value bool + type BuildOptions struct + type BuildReport struct + ID string + type CheckpointOptions struct + All bool + Compression archive.Compression + CreateImage string + Export string + FileLocks bool + IgnoreRootFS bool + IgnoreVolumes bool + Keep bool + Latest bool + LeaveRunning bool + PreCheckPoint bool + PrintStats bool + TCPEstablished bool + WithPrevious bool + type CheckpointReport struct + CRIUStatistics *define.CRIUCheckpointRestoreStatistics + Err error + Id string + RuntimeDuration int64 + type CommitOptions struct + Author string + Changes []string + Format string + ImageName string + IncludeVolumes bool + Message string + Pause bool + Quiet bool + Squash bool + Writer io.Writer + type CommitReport struct + Id string + type ComponentVersion struct + type Container struct + type ContainerCleanupOptions struct + All bool + Exec string + Latest bool + Remove bool + RemoveImage bool + type ContainerCleanupReport struct + CleanErr error + Id string + RmErr error + RmiErr error + type ContainerCloneOptions struct + CreateOpts ContainerCreateOptions + Destroy bool + Force bool + ID string + Image string + RawImageName string + Run bool + type ContainerCopyFunc func() error + type ContainerCpOptions struct + Extract bool + Pause bool + type ContainerCreateOptions struct + Annotation []string + Arch string + Attach []string + Authfile string + BlkIOWeight string + BlkIOWeightDevice []string + CIDFile string + CPUPeriod uint64 + CPUQuota int64 + CPURTPeriod uint64 + CPURTRuntime int64 + CPUS float64 + CPUSetCPUs string + CPUSetMems string + CPUShares uint64 + CapAdd []string + CapDrop []string + CgroupConf []string + CgroupNS string + CgroupParent string + CgroupsMode string + ChrootDirs []string + ConmonPIDFile string + DeviceCgroupRule []string + DeviceReadBPs []string + DeviceReadIOPs []string + DeviceWriteBPs []string + DeviceWriteIOPs []string + Devices []string + Entrypoint *string + Env []string + EnvFile []string + EnvHost bool + Expose []string + GIDMap []string + GroupAdd []string + HTTPProxy bool + HealthCmd string + HealthInterval string + HealthRetries uint + HealthStartPeriod string + HealthTimeout string + HostUsers []string + Hostname string + IPC string + ImageVolume string + Init bool + InitContainerType string + InitPath string + Interactive bool + IsClone bool + IsInfra bool + Label []string + LabelFile []string + LogDriver string + LogOptions []string + Memory string + MemoryReservation string + MemorySwap string + MemorySwappiness int64 + Mount []string + Name string + Net *NetOptions + NoHealthCheck bool + OOMKillDisable bool + OOMScoreAdj *int + OS string + PID string + PIDsLimit *int64 + PasswdEntry string + Personality string + PidFile string + Platform string + Pod string + PodIDFile string + PreserveFDs uint + Privileged bool + PublishAll bool + Pull string + Quiet bool + ReadOnly bool + ReadOnlyTmpFS bool + Replace bool + Requires []string + Restart string + Rm bool + RootFS bool + SdNotifyMode string + SeccompPolicy string + Secrets []string + SecurityOpt []string + ShmSize string + SignaturePolicy string + StopSignal string + StopTimeout uint + StorageOpts []string + SubGIDName string + SubUIDName string + Sysctl []string + Systemd string + TLSVerify commonFlag.OptionalBool + TTY bool + Timeout uint + Timezone string + TmpFS []string + UIDMap []string + UTS string + Ulimit []string + Umask string + UnsetEnv []string + UnsetEnvAll bool + User string + UserNS string + Variant string + Volume []string + VolumesFrom []string + Workdir string + func NewInfraContainerCreateOptions() ContainerCreateOptions + type ContainerCreateReport struct + Id string + type ContainerCreateResponse struct + ID string + Warnings []string + type ContainerEngine interface + AutoUpdate func(ctx context.Context, options AutoUpdateOptions) ([]*AutoUpdateReport, []error) + Config func(ctx context.Context) (*config.Config, error) + ContainerAttach func(ctx context.Context, nameOrID string, options AttachOptions) error + ContainerCheckpoint func(ctx context.Context, namesOrIds []string, options CheckpointOptions) ([]*CheckpointReport, error) + ContainerCleanup func(ctx context.Context, namesOrIds []string, options ContainerCleanupOptions) ([]*ContainerCleanupReport, error) + ContainerClone func(ctx context.Context, ctrClone ContainerCloneOptions) (*ContainerCreateReport, error) + ContainerCommit func(ctx context.Context, nameOrID string, options CommitOptions) (*CommitReport, error) + ContainerCopyFromArchive func(ctx context.Context, nameOrID, path string, reader io.Reader, ...) (ContainerCopyFunc, error) + ContainerCopyToArchive func(ctx context.Context, nameOrID string, path string, writer io.Writer) (ContainerCopyFunc, error) + ContainerCreate func(ctx context.Context, s *specgen.SpecGenerator) (*ContainerCreateReport, error) + ContainerExec func(ctx context.Context, nameOrID string, options ExecOptions, ...) (int, error) + ContainerExecDetached func(ctx context.Context, nameOrID string, options ExecOptions) (string, error) + ContainerExists func(ctx context.Context, nameOrID string, options ContainerExistsOptions) (*BoolReport, error) + ContainerExport func(ctx context.Context, nameOrID string, options ContainerExportOptions) error + ContainerInit func(ctx context.Context, namesOrIds []string, options ContainerInitOptions) ([]*ContainerInitReport, error) + ContainerInspect func(ctx context.Context, namesOrIds []string, options InspectOptions) ([]*ContainerInspectReport, []error, error) + ContainerKill func(ctx context.Context, namesOrIds []string, options KillOptions) ([]*KillReport, error) + ContainerList func(ctx context.Context, options ContainerListOptions) ([]ListContainer, error) + ContainerListExternal func(ctx context.Context) ([]ListContainer, error) + ContainerLogs func(ctx context.Context, containers []string, options ContainerLogsOptions) error + ContainerMount func(ctx context.Context, nameOrIDs []string, options ContainerMountOptions) ([]*ContainerMountReport, error) + ContainerPause func(ctx context.Context, namesOrIds []string, options PauseUnPauseOptions) ([]*PauseUnpauseReport, error) + ContainerPort func(ctx context.Context, nameOrID string, options ContainerPortOptions) ([]*ContainerPortReport, error) + ContainerPrune func(ctx context.Context, options ContainerPruneOptions) ([]*reports.PruneReport, error) + ContainerRename func(ctr context.Context, nameOrID string, options ContainerRenameOptions) error + ContainerRestart func(ctx context.Context, namesOrIds []string, options RestartOptions) ([]*RestartReport, error) + ContainerRestore func(ctx context.Context, namesOrIds []string, options RestoreOptions) ([]*RestoreReport, error) + ContainerRm func(ctx context.Context, namesOrIds []string, options RmOptions) ([]*reports.RmReport, error) + ContainerRun func(ctx context.Context, opts ContainerRunOptions) (*ContainerRunReport, error) + ContainerRunlabel func(ctx context.Context, label string, image string, args []string, ...) error + ContainerStart func(ctx context.Context, namesOrIds []string, options ContainerStartOptions) ([]*ContainerStartReport, error) + ContainerStat func(ctx context.Context, nameOrDir string, path string) (*ContainerStatReport, error) + ContainerStats func(ctx context.Context, namesOrIds []string, options ContainerStatsOptions) (chan ContainerStatsReport, error) + ContainerStop func(ctx context.Context, namesOrIds []string, options StopOptions) ([]*StopReport, error) + ContainerTop func(ctx context.Context, options TopOptions) (*StringSliceReport, error) + ContainerUnmount func(ctx context.Context, nameOrIDs []string, options ContainerUnmountOptions) ([]*ContainerUnmountReport, error) + ContainerUnpause func(ctx context.Context, namesOrIds []string, options PauseUnPauseOptions) ([]*PauseUnpauseReport, error) + ContainerWait func(ctx context.Context, namesOrIds []string, options WaitOptions) ([]WaitReport, error) + Diff func(ctx context.Context, namesOrIds []string, options DiffOptions) (*DiffReport, error) + Events func(ctx context.Context, opts EventsOptions) error + GenerateKube func(ctx context.Context, nameOrIDs []string, opts GenerateKubeOptions) (*GenerateKubeReport, error) + GenerateSystemd func(ctx context.Context, nameOrID string, opts GenerateSystemdOptions) (*GenerateSystemdReport, error) + HealthCheckRun func(ctx context.Context, nameOrID string, options HealthCheckOptions) (*define.HealthCheckResults, error) + Info func(ctx context.Context) (*define.Info, error) + NetworkConnect func(ctx context.Context, networkname string, options NetworkConnectOptions) error + NetworkCreate func(ctx context.Context, network types.Network) (*types.Network, error) + NetworkDisconnect func(ctx context.Context, networkname string, options NetworkDisconnectOptions) error + NetworkExists func(ctx context.Context, networkname string) (*BoolReport, error) + NetworkInspect func(ctx context.Context, namesOrIds []string, options InspectOptions) ([]types.Network, []error, error) + NetworkList func(ctx context.Context, options NetworkListOptions) ([]types.Network, error) + NetworkPrune func(ctx context.Context, options NetworkPruneOptions) ([]*NetworkPruneReport, error) + NetworkReload func(ctx context.Context, names []string, options NetworkReloadOptions) ([]*NetworkReloadReport, error) + NetworkRm func(ctx context.Context, namesOrIds []string, options NetworkRmOptions) ([]*NetworkRmReport, error) + PlayKube func(ctx context.Context, body io.Reader, opts PlayKubeOptions) (*PlayKubeReport, error) + PlayKubeDown func(ctx context.Context, body io.Reader, opts PlayKubeDownOptions) (*PlayKubeReport, error) + PodCreate func(ctx context.Context, specg PodSpec) (*PodCreateReport, error) + PodExists func(ctx context.Context, nameOrID string) (*BoolReport, error) + PodInspect func(ctx context.Context, options PodInspectOptions) (*PodInspectReport, error) + PodKill func(ctx context.Context, namesOrIds []string, options PodKillOptions) ([]*PodKillReport, error) + PodLogs func(ctx context.Context, pod string, options PodLogsOptions) error + PodPause func(ctx context.Context, namesOrIds []string, options PodPauseOptions) ([]*PodPauseReport, error) + PodPrune func(ctx context.Context, options PodPruneOptions) ([]*PodPruneReport, error) + PodPs func(ctx context.Context, options PodPSOptions) ([]*ListPodsReport, error) + PodRestart func(ctx context.Context, namesOrIds []string, options PodRestartOptions) ([]*PodRestartReport, error) + PodRm func(ctx context.Context, namesOrIds []string, options PodRmOptions) ([]*PodRmReport, error) + PodStart func(ctx context.Context, namesOrIds []string, options PodStartOptions) ([]*PodStartReport, error) + PodStats func(ctx context.Context, namesOrIds []string, options PodStatsOptions) ([]*PodStatsReport, error) + PodStop func(ctx context.Context, namesOrIds []string, options PodStopOptions) ([]*PodStopReport, error) + PodTop func(ctx context.Context, options PodTopOptions) (*StringSliceReport, error) + PodUnpause func(ctx context.Context, namesOrIds []string, options PodunpauseOptions) ([]*PodUnpauseReport, error) + SecretCreate func(ctx context.Context, name string, reader io.Reader, ...) (*SecretCreateReport, error) + SecretInspect func(ctx context.Context, nameOrIDs []string) ([]*SecretInfoReport, []error, error) + SecretList func(ctx context.Context, opts SecretListRequest) ([]*SecretInfoReport, error) + SecretRm func(ctx context.Context, nameOrID []string, opts SecretRmOptions) ([]*SecretRmReport, error) + SetupRootless func(ctx context.Context, noMoveProcess bool) error + Shutdown func(ctx context.Context) + SystemDf func(ctx context.Context, options SystemDfOptions) (*SystemDfReport, error) + SystemPrune func(ctx context.Context, options SystemPruneOptions) (*SystemPruneReport, error) + Unshare func(ctx context.Context, args []string, options SystemUnshareOptions) error + Version func(ctx context.Context) (*SystemVersionReport, error) + VolumeCreate func(ctx context.Context, opts VolumeCreateOptions) (*IDOrNameResponse, error) + VolumeExists func(ctx context.Context, namesOrID string) (*BoolReport, error) + VolumeInspect func(ctx context.Context, namesOrIds []string, opts InspectOptions) ([]*VolumeInspectReport, []error, error) + VolumeList func(ctx context.Context, opts VolumeListOptions) ([]*VolumeListReport, error) + VolumeMount func(ctx context.Context, namesOrIds []string) ([]*VolumeMountReport, error) + VolumeMounted func(ctx context.Context, namesOrID string) (*BoolReport, error) + VolumePrune func(ctx context.Context, options VolumePruneOptions) ([]*reports.PruneReport, error) + VolumeRm func(ctx context.Context, namesOrIds []string, opts VolumeRmOptions) ([]*VolumeRmReport, error) + VolumeUnmount func(ctx context.Context, namesOrIds []string) ([]*VolumeUnmountReport, error) + type ContainerExistsOptions struct + External bool + type ContainerExportOptions struct + Output string + type ContainerFilter func(Container) bool + func CompileContainerFilters(filters url.Values) ContainerFilter + type ContainerInitOptions struct + All bool + Latest bool + type ContainerInitReport struct + Err error + Id string + type ContainerInspectReport struct + type ContainerListOptions struct + All bool + External bool + Filters map[string][]string + Format string + Last int + Latest bool + Namespace bool + Pod bool + Quiet bool + Size bool + Sort string + Sync bool + Watch uint + type ContainerLogsOptions struct + Colors bool + Details bool + Follow bool + Latest bool + Names bool + Since time.Time + StderrWriter io.Writer + StdoutWriter io.Writer + Tail int64 + Timestamps bool + Until time.Time + func PodLogsOptionsToContainerLogsOptions(options PodLogsOptions) ContainerLogsOptions + type ContainerMountOptions struct + All bool + Format string + Latest bool + NoTruncate bool + type ContainerMountReport struct + Err error + Id string + Name string + Path string + type ContainerPortOptions struct + All bool + Latest bool + type ContainerPortReport struct + Id string + Ports []nettypes.PortMapping + type ContainerPruneOptions struct + Filters url.Values + type ContainerRenameOptions struct + NewName string + type ContainerRunOptions struct + CIDFile string + Detach bool + DetachKeys string + ErrorStream *os.File + InputStream *os.File + OutputStream *os.File + Passwd bool + PreserveFDs uint + Rm bool + SigProxy bool + Spec *specgen.SpecGenerator + type ContainerRunReport struct + ExitCode int + Id string + type ContainerRunlabelOptions struct + Authfile string + CertDir string + Credentials string + Display bool + Name string + Optional1 string + Optional2 string + Optional3 string + Pull bool + Quiet bool + Replace bool + SignaturePolicy string + SkipTLSVerify types.OptionalBool + type ContainerRunlabelReport struct + type ContainerStartOptions struct + All bool + Attach bool + DetachKeys string + Filters map[string][]string + Interactive bool + Latest bool + SigProxy bool + Stderr *os.File + Stdin *os.File + Stdout *os.File + type ContainerStartReport struct + Err error + ExitCode int + Id string + RawInput string + type ContainerStatReport struct + type ContainerStatsOptions struct + Interval int + Latest bool + Stream bool + type ContainerStatsReport struct + Error error + Stats []define.ContainerStats + type ContainerUnmountOptions struct + All bool + Force bool + Latest bool + type ContainerUnmountReport struct + Err error + Id string + type CopyOptions struct + Chown bool + NoOverwriteDirNonDir bool + Rename map[string]string + type DiffOptions struct + Format string + Latest bool + Type define.DiffType + type DiffReport struct + Changes []archive.Change + type EngineMode string + func (m EngineMode) String() string + type EngineSetup string + type Event struct + func ConvertToEntitiesEvent(e libpodEvents.Event) *Event + type EventsOptions struct + EventChan chan *events.Event + Filter []string + FromStart bool + Since string + Stream bool + Until string + type ExecOptions struct + Cmd []string + DetachKeys string + Envs map[string]string + Interactive bool + Latest bool + PreserveFDs uint + Privileged bool + Tty bool + User string + WorkDir string + type GenerateKubeOptions struct + Service bool + type GenerateKubeReport struct + Reader io.Reader + type GenerateSystemdOptions struct + After []string + ContainerPrefix string + Name bool + New bool + NoHeader bool + PodPrefix string + Requires []string + RestartPolicy *string + RestartSec *uint + Separator string + StartTimeout *uint + StopTimeout *uint + TemplateUnitFile bool + Wants []string + type GenerateSystemdReport struct + Units map[string]string + type HealthCheckOptions struct + type IDOrNameResponse struct + IDOrName string + type IDOrNamed interface + type IDResponse dockerAPI.IDResponse + type Identifier interface + Id func() string + type Image struct + Architecture string + Author string + Comment string + Config *container.Config + Container string + ContainerConfig *container.Config + Created string + Digest digest.Digest + DockerVersion string + GraphDriver string + HealthCheck *manifest.Schema2HealthConfig + History []v1.History + ID string + ManifestType string + Metadata string + NamesHistory []string + Os string + OsVersion string + Parent string + PodmanVersion string + RepoDigests []string + RepoTags []string + RootFS string + Size int64 + User string + Variant string + VirtualSize int64 + func (i *Image) Id() string + type ImageEngine interface + Build func(ctx context.Context, containerFiles []string, opts BuildOptions) (*BuildReport, error) + Config func(ctx context.Context) (*config.Config, error) + Exists func(ctx context.Context, nameOrID string) (*BoolReport, error) + History func(ctx context.Context, nameOrID string, opts ImageHistoryOptions) (*ImageHistoryReport, error) + Import func(ctx context.Context, opts ImageImportOptions) (*ImageImportReport, error) + Inspect func(ctx context.Context, namesOrIDs []string, opts InspectOptions) ([]*ImageInspectReport, []error, error) + List func(ctx context.Context, opts ImageListOptions) ([]*ImageSummary, error) + Load func(ctx context.Context, opts ImageLoadOptions) (*ImageLoadReport, error) + ManifestAdd func(ctx context.Context, listName string, imageNames []string, ...) (string, error) + ManifestAnnotate func(ctx context.Context, names, image string, opts ManifestAnnotateOptions) (string, error) + ManifestCreate func(ctx context.Context, name string, images []string, opts ManifestCreateOptions) (string, error) + ManifestExists func(ctx context.Context, name string) (*BoolReport, error) + ManifestInspect func(ctx context.Context, name string) ([]byte, error) + ManifestPush func(ctx context.Context, name, destination string, imagePushOpts ImagePushOptions) (string, error) + ManifestRemoveDigest func(ctx context.Context, names, image string) (string, error) + ManifestRm func(ctx context.Context, names []string) (*ImageRemoveReport, []error) + Mount func(ctx context.Context, images []string, options ImageMountOptions) ([]*ImageMountReport, error) + Prune func(ctx context.Context, opts ImagePruneOptions) ([]*reports.PruneReport, error) + Pull func(ctx context.Context, rawImage string, opts ImagePullOptions) (*ImagePullReport, error) + PullImage func(ctx context.Context, rawImage string, pullOptions *libimage.PullOptions) (io.ReadCloser, error) + Push func(ctx context.Context, source string, destination string, opts ImagePushOptions) error + Remove func(ctx context.Context, images []string, opts ImageRemoveOptions) (*ImageRemoveReport, []error) + Save func(ctx context.Context, nameOrID string, tags []string, options ImageSaveOptions) error + Search func(ctx context.Context, term string, opts ImageSearchOptions) ([]ImageSearchReport, error) + SetTrust func(ctx context.Context, args []string, options SetTrustOptions) error + ShowTrust func(ctx context.Context, args []string, options ShowTrustOptions) (*ShowTrustReport, error) + Shutdown func(ctx context.Context) + Sign func(ctx context.Context, names []string, options SignOptions) (*SignReport, error) + Tag func(ctx context.Context, nameOrID string, tags []string, options ImageTagOptions) error + Transfer func(ctx context.Context, source ImageScpOptions, dest ImageScpOptions, ...) error + Tree func(ctx context.Context, nameOrID string, options ImageTreeOptions) (*ImageTreeReport, error) + Unmount func(ctx context.Context, images []string, options ImageUnmountOptions) ([]*ImageUnmountReport, error) + Untag func(ctx context.Context, nameOrID string, tags []string, options ImageUntagOptions) error + type ImageFilter func(Image) bool + func CompileImageFilters(filters url.Values) ImageFilter + type ImageHistoryLayer struct + Comment string + Created time.Time + CreatedBy string + ID string + Size int64 + Tags []string + type ImageHistoryOptions struct + type ImageHistoryReport struct + Layers []ImageHistoryLayer + type ImageImportOptions struct + Architecture string + Changes []string + Message string + OS string + Quiet bool + Reference string + SignaturePolicy string + Source string + SourceIsURL bool + Variant string + type ImageImportReport struct + Id string + type ImageInspectReport struct + type ImageListOptions struct + All bool + Filter []string + type ImageLoadOptions struct + Input string + Quiet bool + SignaturePolicy string + type ImageLoadReport struct + Names []string + type ImageMountOptions struct + All bool + Format string + type ImageMountReport struct + Id string + Name string + Path string + Repositories []string + type ImagePruneOptions struct + All bool + External bool + Filter []string + type ImagePullOptions struct + AllTags bool + Arch string + Authfile string + CertDir string + OS string + Password string + PullPolicy config.PullPolicy + Quiet bool + SignaturePolicy string + SkipTLSVerify types.OptionalBool + Username string + Variant string + type ImagePullReport struct + Error string + ID string + Images []string + Stream string + type ImagePushOptions struct + All bool + Authfile string + CertDir string + Compress bool + CompressionFormat string + DigestFile string + Format string + Password string + Progress chan types.ProgressProperties + Quiet bool + RemoveSignatures bool + Rm bool + SignBy string + SignaturePolicy string + SkipTLSVerify types.OptionalBool + Username string + type ImageRemoveOptions struct + All bool + Force bool + Ignore bool + LookupManifest bool + type ImageRemoveReport struct + Deleted []string + ExitCode int + Untagged []string + type ImageSaveOptions struct + Compress bool + Format string + MultiImageArchive bool + OciAcceptUncompressedLayers bool + Output string + Quiet bool + type ImageScpConnections struct + Connections []string + Identities []string + URI []*url.URL + type ImageScpOptions struct + File string + Image string + Quiet bool + Remote bool + User string + type ImageSearchOptions struct + Authfile string + Filters []string + Limit int + ListTags bool + SkipTLSVerify types.OptionalBool + type ImageSearchReport struct + Automated string + Description string + Index string + Name string + Official string + Stars int + Tag string + type ImageSummary struct + Containers int + Created int64 + Dangling bool + Digest string + History []string + ID string + Labels map[string]string + Names []string + ParentId string + ReadOnly bool + RepoDigests []string + RepoTags []string + SharedSize int + Size int64 + VirtualSize int64 + func (i *ImageSummary) Id() string + func (i *ImageSummary) IsDangling() bool + func (i *ImageSummary) IsReadOnly() bool + type ImageTagOptions struct + type ImageTreeOptions struct + WhatRequires bool + type ImageTreeReport struct + Tree string + type ImageUnmountOptions struct + All bool + Force bool + type ImageUnmountReport struct + Err error + Id string + type ImageUntagOptions struct + type InspectOptions struct + All bool + Format string + Latest bool + Size bool + Type string + type KillOptions struct + All bool + Latest bool + Signal string + type KillReport struct + Err error + Id string + RawInput string + type ListContainer struct + AutoRemove bool + Command []string + Created time.Time + CreatedAt string + ExitCode int32 + Exited bool + ExitedAt int64 + ID string + Image string + ImageID string + IsInfra bool + Labels map[string]string + Mounts []string + Names []string + Namespaces ListContainerNamespaces + Networks []string + Pid int + Pod string + PodName string + Ports []types.PortMapping + Size *define.ContainerSize + StartedAt int64 + State string + Status string + func (l ListContainer) CGROUPNS() string + func (l ListContainer) IPC() string + func (l ListContainer) MNT() string + func (l ListContainer) NET() string + func (l ListContainer) PIDNS() string + func (l ListContainer) USERNS() string + func (l ListContainer) UTS() string + type ListContainerNamespaces struct + Cgroup string + IPC string + MNT string + NET string + PIDNS string + UTS string + User string + type ListPodContainer struct + Id string + Names string + Status string + type ListPodsReport struct + Cgroup string + Containers []*ListPodContainer + Created time.Time + Id string + InfraId string + Labels map[string]string + Name string + Namespace string + Networks []string + Status string + type ListRegistriesReport struct + Registries []string + type ManifestAddOptions struct + All bool + Authfile string + CertDir string + Images []string + Password string + SkipTLSVerify types.OptionalBool + Username string + type ManifestAnnotateOptions struct + Annotation []string + Arch string + Features []string + OS string + OSFeatures []string + OSVersion string + Variant string + type ManifestCreateOptions struct + All bool + type ManifestModifyOptions struct + Operation string + type ManifestModifyReport struct + Errors []error + ID string + Images []string + type ManifestRemoveOptions struct + type Named interface + Name func() string + type Names interface + Names func() []string + type NetFlags struct + AddHosts []string + DNDSearch []string + DNS []string + DNSOpt []string + IP string + MacAddr string + Network string + NetworkAlias []string + NoHosts bool + Publish []string + type NetOptions struct + AddHosts []string + Aliases []string + DNSOptions []string + DNSSearch []string + DNSServers []net.IP + Network specgen.Namespace + NetworkOptions map[string][]string + Networks map[string]types.PerNetworkOptions + NoHosts bool + PublishPorts []types.PortMapping + UseImageResolvConf bool + type NetworkConnectOptions struct + Container string + type NetworkCreateOptions struct + DisableDNS bool + Driver string + Gateways []net.IP + IPv6 bool + Internal bool + Labels map[string]string + MacVLAN string + Options map[string]string + Ranges []string + Subnets []string + type NetworkCreateReport struct + Name string + type NetworkDisconnectOptions struct + Container string + Force bool + type NetworkListOptions struct + Filters map[string][]string + Format string + Quiet bool + type NetworkPruneOptions struct + Filters map[string][]string + type NetworkPruneReport struct + Error error + Name string + type NetworkReloadOptions struct + All bool + Latest bool + type NetworkReloadReport struct + Err error + Id string + type NetworkRmOptions struct + Force bool + Timeout *uint + type NetworkRmReport struct + Err error + Name string + type PauseUnPauseOptions struct + All bool + type PauseUnpauseReport struct + Err error + Id string + type PlayKubeDownOptions struct + type PlayKubeOptions struct + Annotations map[string]string + Authfile string + Build types.OptionalBool + CertDir string + ConfigMaps []string + ContextDir string + Down bool + LogDriver string + LogOptions []string + Networks []string + NoHosts bool + Password string + Quiet bool + Replace bool + SeccompProfileRoot string + ServiceContainer bool + SignaturePolicy string + SkipTLSVerify types.OptionalBool + Start types.OptionalBool + StaticIPs []net.IP + StaticMACs []net.HardwareAddr + Username string + Userns string + type PlayKubePod struct + ContainerErrors []string + Containers []string + ID string + InitContainers []string + Logs []string + type PlayKubeReport struct + Pods []PlayKubePod + Volumes []PlayKubeVolume + type PlayKubeTeardown struct + RmReport []*PodRmReport + StopReport []*PodStopReport + type PlayKubeVolume struct + Name string + type PodCreateOptions struct + CgroupParent string + Cpus float64 + CpusetCpus string + CreateCommand []string + DeviceReadBPs []string + Devices []string + ExitPolicy string + Hostname string + Infra bool + InfraCommand *string + InfraConmonPidFile string + InfraImage string + InfraName string + Labels map[string]string + Name string + Net *NetOptions + Pid string + SecurityOpt []string + Share []string + ShareParent *bool + Sysctl []string + Userns specgen.Namespace + Volume []string + VolumesFrom []string + func (p *PodCreateOptions) CPULimits() *specs.LinuxCPU + type PodCreateReport struct + Id string + type PodDeleteReport struct + type PodInspectOptions struct + Format string + Latest bool + NameOrID string + type PodInspectReport struct + type PodKillOptions struct + All bool + Latest bool + Signal string + type PodKillReport struct + Errs []error + Id string + type PodLogsOptions struct + Color bool + ContainerName string + type PodPSOptions struct + CtrIds bool + CtrNames bool + CtrStatus bool + Filters map[string][]string + Format string + Latest bool + Namespace bool + Quiet bool + Sort string + type PodPauseOptions struct + All bool + Latest bool + type PodPauseReport struct + Errs []error + Id string + type PodPruneOptions struct + Force bool + type PodPruneReport struct + Err error + Id string + type PodRestartOptions struct + All bool + Latest bool + type PodRestartReport struct + Errs []error + Id string + type PodRmOptions struct + All bool + Force bool + Ignore bool + Latest bool + Timeout *uint + type PodRmReport struct + Err error + Id string + type PodSpec struct + PodSpecGen specgen.PodSpecGenerator + type PodStartOptions struct + All bool + Latest bool + type PodStartReport struct + Errs []error + Id string + type PodStatsOptions struct + All bool + Latest bool + type PodStatsReport struct + BlockIO string + CID string + CPU string + Mem string + MemUsage string + MemUsageBytes string + Name string + NetIO string + PIDS string + Pod string + type PodStopOptions struct + All bool + Ignore bool + Latest bool + Timeout int + type PodStopReport struct + Errs []error + Id string + type PodTopOptions struct + Descriptors []string + Latest bool + ListDescriptors bool + NameOrID string + type PodUnpauseReport struct + Errs []error + Id string + type PodmanConfig struct + CPUProfile string + CgroupUsage string + ConmonPath string + EngineMode EngineMode + Identity string + MaxWorks int + MemoryProfile string + NoOut bool + RegistriesConf string + Remote bool + Runroot string + RuntimeFlags []string + RuntimePath string + StorageDriver string + StorageOpts []string + Syslog bool + Trace bool + URI string + type PodunpauseOptions struct + All bool + Latest bool + type PsSortedCreateTime struct + func (a PsSortedCreateTime) Less(i, j int) bool + type Report struct + Err map[string]error + Id []string + type RestartOptions struct + All bool + Latest bool + Running bool + Timeout *uint + type RestartReport struct + Err error + Id string + type RestoreOptions struct + All bool + CheckpointImage bool + FileLocks bool + IgnoreRootFS bool + IgnoreStaticIP bool + IgnoreStaticMAC bool + IgnoreVolumes bool + Import string + ImportPrevious string + Keep bool + Latest bool + Name string + Pod string + PrintStats bool + PublishPorts []string + TCPEstablished bool + type RestoreReport struct + CRIUStatistics *define.CRIUCheckpointRestoreStatistics + Err error + Id string + RuntimeDuration int64 + type RmOptions struct + All bool + Depend bool + Force bool + Ignore bool + Latest bool + Timeout *uint + Volumes bool + type SecretCreateOptions struct + Driver string + DriverOpts map[string]string + type SecretCreateReport struct + ID string + type SecretCreateRequest struct + Data string + Driver SecretDriverSpec + Name string + type SecretDriverSpec struct + Name string + Options map[string]string + type SecretInfoReport struct + CreatedAt time.Time + ID string + Spec SecretSpec + UpdatedAt time.Time + type SecretInfoReportCompat struct + Version SecretVersion + type SecretListReport struct + CreatedAt string + Driver string + ID string + Name string + UpdatedAt string + type SecretListRequest struct + Filters map[string][]string + type SecretRmOptions struct + All bool + type SecretRmReport struct + Err error + ID string + type SecretSpec struct + Driver SecretDriverSpec + Name string + type SecretVersion struct + Index int + type ServiceOptions struct + CorsHeaders string + PProfAddr string + Timeout time.Duration + URI string + type SetTrustOptions struct + PolicyPath string + PubKeysFile []string + Type string + type ShowTrustOptions struct + JSON bool + PolicyPath string + Raw bool + RegistryPath string + type ShowTrustReport struct + JSONOutput []byte + Policies []*trust.Policy + Raw []byte + SystemRegistriesDirPath string + type SignOptions struct + All bool + Authfile string + CertDir string + Directory string + SignBy string + type SignReport struct + type SortListContainers []ListContainer + func SortPsOutput(sortBy string, psOutput SortListContainers) (SortListContainers, error) + func (a SortListContainers) Len() int + func (a SortListContainers) Swap(i, j int) + type StopOptions struct + All bool + Ignore bool + Latest bool + Timeout *uint + type StopReport struct + Err error + Id string + RawInput string + type StringSet struct + func NewStringSet(elem ...string) *StringSet + func (s *StringSet) Add(elem string) + func (s *StringSet) Contains(elem string) bool + func (s *StringSet) Elements() []string + func (s *StringSet) Remove(elem string) + func (s *StringSet) String() string + type StringSliceReport struct + Value []string + type SwagErrNoSuchSecret struct + Body struct{ ... } + type SwagErrSecretInUse struct + Body struct{ ... } + type SwagSecretCreateResponse struct + Body struct{ ... } + type SwagSecretInspectCompatResponse struct + Body SecretInfoReportCompat + type SwagSecretInspectResponse struct + Body SecretInfoReport + type SwagSecretListCompatResponse struct + Body []*SecretInfoReportCompat + type SwagSecretListResponse struct + Body []*SecretInfoReport + type SystemDfContainerReport struct + Command []string + ContainerID string + Created time.Time + Image string + LocalVolumes int + Names string + RWSize int64 + Size int64 + Status string + type SystemDfImageReport struct + Containers int + Created time.Time + ImageID string + Repository string + SharedSize int64 + Size int64 + Tag string + UniqueSize int64 + type SystemDfOptions struct + Format string + Verbose bool + type SystemDfReport struct + Containers []*SystemDfContainerReport + Images []*SystemDfImageReport + Volumes []*SystemDfVolumeReport + type SystemDfVolumeReport struct + Links int + ReclaimableSize int64 + Size int64 + VolumeName string + type SystemEngine interface + Migrate func(ctx context.Context, flags *pflag.FlagSet, config *PodmanConfig, ...) error + Renumber func(ctx context.Context, flags *pflag.FlagSet, config *PodmanConfig) error + Reset func(ctx context.Context) error + Shutdown func(ctx context.Context) + type SystemMigrateOptions struct + NewRuntime string + type SystemPruneOptions struct + All bool + Filters map[string][]string + Volume bool + type SystemPruneReport struct + ContainerPruneReports []*reports.PruneReport + ImagePruneReports []*reports.PruneReport + PodPruneReport []*PodPruneReport + ReclaimedSpace uint64 + VolumePruneReports []*reports.PruneReport + type SystemResetOptions struct + Force bool + type SystemUnshareOptions struct + RootlessNetNS bool + type SystemVersionReport struct + Client *define.Version + Server *define.Version + type TopOptions struct + Descriptors []string + Latest bool + ListDescriptors bool + NameOrID string + type Volume struct + type VolumeConfigResponse struct + type VolumeCreateOptions struct + Driver string + Label map[string]string + Labels map[string]string + Name string + Options map[string]string + type VolumeDeleteOptions struct + type VolumeDeleteReport struct + type VolumeFilter func(Volume) bool + func CompileVolumeFilters(filters url.Values) VolumeFilter + type VolumeInspectReport struct + type VolumeListOptions struct + Filter map[string][]string + type VolumeListReport struct + type VolumeMountReport struct + Err error + Id string + Name string + Path string + type VolumePruneOptions struct + Filters url.Values + type VolumeRmOptions struct + All bool + Force bool + Timeout *uint + type VolumeRmReport struct + Err error + Id string + type VolumeUnmountReport struct + Err error + Id string + type WaitOptions struct + Condition []define.ContainerStatus + Interval time.Duration + Latest bool + type WaitReport struct + Error error + ExitCode int32 + Id string