From eaff7803128f4062b1f9462e029a4c534ad1ea2e Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Mon, 20 Feb 2017 13:41:20 -0500 Subject: [PATCH] Revert "first steps to adding kubelet option to enable debugger mode, next steps is to included a warning message." This reverts commit d3b2708ae8632b514ac1e7abd3a8029fc6611814. --- hack/local-up-cluster.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/hack/local-up-cluster.sh b/hack/local-up-cluster.sh index bd2fdbc5b89..1f211d60a7d 100755 --- a/hack/local-up-cluster.sh +++ b/hack/local-up-cluster.sh @@ -29,7 +29,6 @@ RUNTIME_CONFIG=${RUNTIME_CONFIG:-""} KUBELET_AUTHORIZATION_WEBHOOK=${KUBELET_AUTHORIZATION_WEBHOOK:-""} KUBELET_AUTHENTICATION_WEBHOOK=${KUBELET_AUTHENTICATION_WEBHOOK:-""} POD_MANIFEST_PATH=${POD_MANIFEST_PATH:-"/var/run/kubernetes/static-pods"} -ENABLE_KUBELET_DEBUG_HANDLERS=${ENABLE_KUBELET_DEBUG_HANDLERS:-false} # Name of the network plugin, eg: "kubenet" NET_PLUGIN=${NET_PLUGIN:-""} # Place the binaries required by NET_PLUGIN in this directory, eg: "/home/kubernetes/bin". @@ -593,7 +592,6 @@ function start_kubelet { --eviction-soft=${EVICTION_SOFT} \ --eviction-pressure-transition-period=${EVICTION_PRESSURE_TRANSITION_PERIOD} \ --pod-manifest-path="${POD_MANIFEST_PATH}" \ - --enable-debugging-handlers=${ENABLE_KUBELET_DEBUG_HANDLERS} \ ${auth_args} \ ${dns_args} \ ${net_plugin_dir_args} \ @@ -798,9 +796,6 @@ if [[ "${START_MODE}" != "nokubelet" ]]; then ;; Linux) start_kubelet - if [[ "${ENABLE_KUBELET_DEBUG_HANDLER}" = true ]]; then - warning "kubelet is debug mode." - fi ;; *) warning "Unsupported host OS. Must be Linux or Mac OS X, kubelet aborted."