Updated shebang in scripts for better portability

pull/118/head
Ivan Font 2017-01-26 16:23:42 -08:00
parent 9272b2556e
commit 9888571715
11 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/bash #!/usr/bin/env bash
set -x set -x
if [[ -z ${NUM_CONTROLLERS} || -z ${NUM_WORKERS} || -z ${KUBERNETES_VERSION} ]]; then if [[ -z ${NUM_CONTROLLERS} || -z ${NUM_WORKERS} || -z ${KUBERNETES_VERSION} ]]; then

View File

@ -1,4 +1,4 @@
#!/usr/bin/bash #!/usr/bin/env bash
set -x set -x
if [[ -z ${NUM_CONTROLLERS} || -z ${NUM_WORKERS} || -z ${KUBERNETES_VERSION} ]]; then if [[ -z ${NUM_CONTROLLERS} || -z ${NUM_WORKERS} || -z ${KUBERNETES_VERSION} ]]; then

View File

@ -1,4 +1,4 @@
#!/usr/bin/bash #!/usr/bin/env bash
set -x set -x
DOCKER_VERSION=1.12.5 DOCKER_VERSION=1.12.5

View File

@ -1,4 +1,4 @@
#!/usr/bin/bash #!/usr/bin/env bash
set -x set -x
if [[ -z ${NUM_CONTROLLERS} || -z ${NUM_WORKERS} || -z ${KUBERNETES_VERSION} ]]; then if [[ -z ${NUM_CONTROLLERS} || -z ${NUM_WORKERS} || -z ${KUBERNETES_VERSION} ]]; then

View File

@ -1,4 +1,4 @@
#!/usr/bin/bash #!/usr/bin/env bash
set -x set -x
kubectl create -f https://raw.githubusercontent.com/kelseyhightower/kubernetes-the-hard-way/master/services/kubedns.yaml kubectl create -f https://raw.githubusercontent.com/kelseyhightower/kubernetes-the-hard-way/master/services/kubedns.yaml

View File

@ -1,4 +1,4 @@
#!/usr/bin/bash #!/usr/bin/env bash
set -x set -x
if [[ -z ${NUM_CONTROLLERS} || -z ${NUM_WORKERS} ]]; then if [[ -z ${NUM_CONTROLLERS} || -z ${NUM_WORKERS} ]]; then

View File

@ -1,4 +1,4 @@
#!/usr/bin/bash #!/usr/bin/env bash
set -x set -x
if [[ -z ${NUM_CONTROLLERS} || -z ${NUM_WORKERS} || -z ${KUBERNETES_VERSION} ]]; then if [[ -z ${NUM_CONTROLLERS} || -z ${NUM_WORKERS} || -z ${KUBERNETES_VERSION} ]]; then

View File

@ -1,4 +1,4 @@
#!/usr/bin/bash #!/usr/bin/env bash
set -x set -x
KUBERNETES_PUBLIC_ADDRESS=$(gcloud compute addresses describe kubernetes \ KUBERNETES_PUBLIC_ADDRESS=$(gcloud compute addresses describe kubernetes \

View File

@ -1,4 +1,4 @@
#!/usr/bin/bash #!/usr/bin/env bash
set -x set -x
if [[ -z ${NUM_CONTROLLERS} || -z ${NUM_WORKERS} || -z ${KUBERNETES_VERSION} ]]; then if [[ -z ${NUM_CONTROLLERS} || -z ${NUM_WORKERS} || -z ${KUBERNETES_VERSION} ]]; then

View File

@ -1,4 +1,4 @@
#!/usr/bin/bash #!/usr/bin/env bash
set -x set -x
kubectl run nginx --image=nginx --port=80 --replicas=3 kubectl run nginx --image=nginx --port=80 --replicas=3

View File

@ -1,4 +1,4 @@
#!/usr/bin/bash #!/usr/bin/env bash
set -x set -x
if [[ -z ${NUM_CONTROLLERS} || -z ${NUM_WORKERS} || -z ${KUBERNETES_VERSION} ]]; then if [[ -z ${NUM_CONTROLLERS} || -z ${NUM_WORKERS} || -z ${KUBERNETES_VERSION} ]]; then