mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-10-30 09:52:46 +00:00 
			
		
		
		
	make more of the shell pass lints
This commit is contained in:
		| @@ -45,13 +45,6 @@ | ||||
| ./hack/build-cross.sh | ||||
| ./hack/build-go.sh | ||||
| ./hack/cherry_pick_pull.sh | ||||
| ./hack/e2e-internal/e2e-cluster-size.sh | ||||
| ./hack/e2e-internal/e2e-down.sh | ||||
| ./hack/e2e-internal/e2e-grow-cluster.sh | ||||
| ./hack/e2e-internal/e2e-shrink-cluster.sh | ||||
| ./hack/e2e-internal/e2e-status.sh | ||||
| ./hack/e2e-internal/e2e-up.sh | ||||
| ./hack/e2e-node-test.sh | ||||
| ./hack/generate-bindata.sh | ||||
| ./hack/generate-docs.sh | ||||
| ./hack/get-build.sh | ||||
|   | ||||
| @@ -18,10 +18,10 @@ set -o errexit | ||||
| set -o nounset | ||||
| set -o pipefail | ||||
|  | ||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../.. | ||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../.. | ||||
|  | ||||
| : ${KUBECTL:=${KUBE_ROOT}/cluster/kubectl.sh} | ||||
| : ${KUBE_CONFIG_FILE:="config-test.sh"} | ||||
| : "${KUBECTL:=${KUBE_ROOT}/cluster/kubectl.sh}" | ||||
| : "${KUBE_CONFIG_FILE:="config-test.sh"}" | ||||
|  | ||||
| export KUBECTL KUBE_CONFIG_FILE | ||||
|  | ||||
|   | ||||
| @@ -18,10 +18,10 @@ set -o errexit | ||||
| set -o nounset | ||||
| set -o pipefail | ||||
|  | ||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../.. | ||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../.. | ||||
|  | ||||
| : ${KUBECTL:=${KUBE_ROOT}/cluster/kubectl.sh} | ||||
| : ${KUBE_CONFIG_FILE:="config-test.sh"} | ||||
| : "${KUBECTL:=${KUBE_ROOT}/cluster/kubectl.sh}" | ||||
| : "${KUBE_CONFIG_FILE:="config-test.sh"}" | ||||
|  | ||||
| export KUBECTL KUBE_CONFIG_FILE | ||||
|  | ||||
|   | ||||
| @@ -14,18 +14,18 @@ | ||||
| # See the License for the specific language governing permissions and | ||||
| # limitations under the License. | ||||
|  | ||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../.. | ||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../.. | ||||
|  | ||||
| if [[ ! -z "${1:-}" ]]; then | ||||
| if [[ -n "${1:-}" ]]; then | ||||
|   export KUBE_GCE_ZONE="${1}" | ||||
| fi | ||||
| if [[ ! -z "${2:-}" ]]; then | ||||
| if [[ -n "${2:-}" ]]; then | ||||
|   export MULTIZONE="${2}" | ||||
| fi | ||||
| if [[ ! -z "${3:-}" ]]; then | ||||
| if [[ -n "${3:-}" ]]; then | ||||
|   export KUBE_REPLICATE_EXISTING_MASTER="${3}" | ||||
| fi | ||||
| if [[ ! -z "${4:-}" ]]; then | ||||
| if [[ -n "${4:-}" ]]; then | ||||
|   export KUBE_USE_EXISTING_MASTER="${4}" | ||||
| fi | ||||
| if [[ -z "${NUM_NODES:-}" ]]; then | ||||
|   | ||||
| @@ -14,18 +14,18 @@ | ||||
| # See the License for the specific language governing permissions and | ||||
| # limitations under the License. | ||||
|  | ||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../.. | ||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../.. | ||||
|  | ||||
| if [[ ! -z "${1:-}" ]]; then | ||||
| if [[ -n "${1:-}" ]]; then | ||||
|   export KUBE_GCE_ZONE="${1}" | ||||
| fi | ||||
| if [[ ! -z "${2:-}" ]]; then | ||||
| if [[ -n "${2:-}" ]]; then | ||||
|   export MULTIZONE="${2}" | ||||
| fi | ||||
| if [[ ! -z "${3:-}" ]]; then | ||||
| if [[ -n "${3:-}" ]]; then | ||||
|   export KUBE_DELETE_NODES="${3}" | ||||
| fi | ||||
| if [[ ! -z "${4:-}" ]]; then | ||||
| if [[ -n "${4:-}" ]]; then | ||||
|   export KUBE_USE_EXISTING_MASTER="${4}" | ||||
| fi | ||||
|  | ||||
|   | ||||
| @@ -18,10 +18,10 @@ set -o errexit | ||||
| set -o nounset | ||||
| set -o pipefail | ||||
|  | ||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../.. | ||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../.. | ||||
|  | ||||
| : ${KUBECTL:=${KUBE_ROOT}/cluster/kubectl.sh} | ||||
| : ${KUBE_CONFIG_FILE:="config-test.sh"} | ||||
| : "${KUBECTL:=${KUBE_ROOT}/cluster/kubectl.sh}" | ||||
| : "${KUBE_CONFIG_FILE:="config-test.sh"}" | ||||
|  | ||||
| export KUBECTL KUBE_CONFIG_FILE | ||||
|  | ||||
|   | ||||
| @@ -18,10 +18,10 @@ set -o errexit | ||||
| set -o nounset | ||||
| set -o pipefail | ||||
|  | ||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../.. | ||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../.. | ||||
|  | ||||
| : ${KUBECTL:=${KUBE_ROOT}/cluster/kubectl.sh} | ||||
| : ${KUBE_CONFIG_FILE:="config-test.sh"} | ||||
| : "${KUBECTL:=${KUBE_ROOT}/cluster/kubectl.sh}" | ||||
| : "${KUBE_CONFIG_FILE:="config-test.sh"}" | ||||
|  | ||||
| export KUBECTL KUBE_CONFIG_FILE | ||||
|  | ||||
|   | ||||
| @@ -20,7 +20,7 @@ set -o errexit | ||||
| set -o nounset | ||||
| set -o pipefail | ||||
|  | ||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE}")/.. | ||||
| KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/.. | ||||
|  | ||||
| # For help output | ||||
| ARGHELP="" | ||||
| @@ -40,4 +40,4 @@ echo "The equivalent of this invocation is: " | ||||
| echo "    make test-e2e-node ${ARGHELP}" | ||||
| echo | ||||
| echo | ||||
| make --no-print-directory -C "${KUBE_ROOT}" test-e2e-node FOCUS=${FOCUS:-} SKIP=${SKIP:-} | ||||
| make --no-print-directory -C "${KUBE_ROOT}" test-e2e-node FOCUS="${FOCUS:-}" SKIP="${SKIP:-}" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 xichengliudui
					xichengliudui