Merge pull request #772 from 14rcole/kpod-rename

implement kpod rename
This commit is contained in:
Mrunal Patel 2017-08-17 10:04:16 -07:00 committed by GitHub
commit a5591d34b7
9 changed files with 257 additions and 1 deletions

View file

@ -181,6 +181,26 @@ _kpod_push() {
esac
}
_kpod_rename() {
local boolean_options="
--help
-h
"
local options_with_args="
"
local all_options="$options_with_args $boolean_options"
case "$cur" in
-*)
COMPREPLY=($(compgen -W "$boolean_options $options_with_args" -- "$cur"))
;;
*)
__kpod_list_containers
;;
esac
}
_kpod_rmi() {
local boolean_options="
--help