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 /completions | |
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 'completions')
-rw-r--r-- | completions/bash/podman | 55 |
1 files changed, 54 insertions, 1 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 61af7ac59..1e29a2e30 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -1742,7 +1742,9 @@ _podman_manifest() { add create inspect - " + push + remove + " __podman_subcommands "$subcommands" && return case "$cur" in @@ -1838,6 +1840,57 @@ _podman_manifest_inspect() { esac } +_podman_manifest_push() { + local options_with_args=" + --authfile + --cert-dir + --creds + --digestfile + --format + -f + --sign-by + --signature-policy, + " + + local boolean_options=" + --all + --purge + --help + -h + --remove-signatures + --tls-verify + --quiet + " + + _complete_ "$options_with_args" "$boolean_options" + case "$cur" in + -*) + COMPREPLY=($(compgen -W "$boolean_options $options_with_args" -- "$cur")) + ;; + *) + __podman_complete_images --id + ;; + esac +} + +_podman_manifest_remove() { + local options_with_args=" + " + + local boolean_options=" + " + + _complete_ "$options_with_args" "$boolean_options" + case "$cur" in + -*) + COMPREPLY=($(compgen -W "$boolean_options $options_with_args" -- "$cur")) + ;; + *) + __podman_complete_images --id + ;; + esac +} + _podman_pull() { local options_with_args=" --authfile |