Merge pull request #17136 from kargakis/use-deprecation-field-in-stop

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot
2015-11-24 17:37:19 -08:00
4 changed files with 6 additions and 36 deletions

View File

@@ -787,35 +787,6 @@ _kubectl_run()
must_have_one_noun=()
}
_kubectl_stop()
{
last_command="kubectl_stop"
commands=()
flags=()
two_word_flags=()
flags_with_completion=()
flags_completion=()
flags+=("--all")
flags+=("--filename=")
flags_with_completion+=("--filename")
flags_completion+=("__handle_filename_extension_flag json|yaml|yml")
two_word_flags+=("-f")
flags_with_completion+=("-f")
flags_completion+=("__handle_filename_extension_flag json|yaml|yml")
flags+=("--grace-period=")
flags+=("--ignore-not-found")
flags+=("--output=")
two_word_flags+=("-o")
flags+=("--selector=")
two_word_flags+=("-l")
flags+=("--timeout=")
must_have_one_flag=()
must_have_one_noun=()
}
_kubectl_expose()
{
last_command="kubectl_expose"
@@ -1265,7 +1236,6 @@ _kubectl()
commands+=("port-forward")
commands+=("proxy")
commands+=("run")
commands+=("stop")
commands+=("expose")
commands+=("autoscale")
commands+=("label")