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/manifest.go | |
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/manifest.go')
-rw-r--r-- | pkg/domain/entities/manifest.go | 5 |
1 files changed, 5 insertions, 0 deletions
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 +} |