diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-07 19:10:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-07 19:10:32 +0200 |
commit | 1d3cdf9a4642df073becb54d178d6b1959526a47 (patch) | |
tree | 8648b5f2e821b25b7c2211d1389554666579e42c /pkg/domain/entities | |
parent | 0799e52d15c6d63434ea685095d4c20c20d034f3 (diff) | |
parent | 5621f5199d0aeaefae77db920866d7aeea9d1e7b (diff) | |
download | podman-1d3cdf9a4642df073becb54d178d6b1959526a47.tar.gz podman-1d3cdf9a4642df073becb54d178d6b1959526a47.tar.bz2 podman-1d3cdf9a4642df073becb54d178d6b1959526a47.zip |
Merge pull request #5961 from QiWang19/manifest-remove-push
Manifest remove, push
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/engine_image.go | 2 | ||||
-rw-r--r-- | pkg/domain/entities/manifest.go | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/pkg/domain/entities/engine_image.go b/pkg/domain/entities/engine_image.go index d979e6006..ffa71abd6 100644 --- a/pkg/domain/entities/engine_image.go +++ b/pkg/domain/entities/engine_image.go @@ -32,4 +32,6 @@ type ImageEngine interface { ManifestInspect(ctx context.Context, name string) ([]byte, error) ManifestAdd(ctx context.Context, opts ManifestAddOptions) (string, error) ManifestAnnotate(ctx context.Context, names []string, opts ManifestAnnotateOptions) (string, error) + ManifestRemove(ctx context.Context, names []string) (string, error) + ManifestPush(ctx context.Context, names []string, manifestPushOpts ManifestPushOptions) error } diff --git a/pkg/domain/entities/manifest.go b/pkg/domain/entities/manifest.go index d92b1dc9b..273052bb9 100644 --- a/pkg/domain/entities/manifest.go +++ b/pkg/domain/entities/manifest.go @@ -24,3 +24,8 @@ type ManifestAnnotateOptions struct { OSVersion string `json:"os_version" schema:"os_version"` Variant string `json:"variant" schema:"variant"` } + +type ManifestPushOptions struct { + Purge, Quiet, All, TlsVerify, RemoveSignatures bool + Authfile, CertDir, Creds, DigestFile, Format, SignBy string +} |