Merge pull request #91210 from tosi3k/dont-log-node-ip-range-to-stdout

Log user provided NODE_IP_RANGE to stdout instead of stderr
This commit is contained in:
Kubernetes Prow Robot 2020-05-18 13:34:08 -07:00 committed by GitHub
commit e215a8772c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,6 @@ function get-master-disk-size() {
function get-node-ip-range {
if [[ -n "${NODE_IP_RANGE:-}" ]]; then
>&2 echo "Using user provided NODE_IP_RANGE: ${NODE_IP_RANGE}"
echo "${NODE_IP_RANGE}"
return
fi