Merge pull request #122879 from liggitt/verbose-local-up

Make local-up-cluster non-verbose by default
This commit is contained in:
Kubernetes Prow Robot 2024-01-20 03:50:35 +01:00 committed by GitHub
commit 418ae605ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
set -x
KUBE_VERBOSE=${KUBE_VERBOSE:-1}
if (( KUBE_VERBOSE > 4 )); then
set -x
fi
KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..