Skip to content

Commit

Permalink
Fix errant quote; add missing spellcheck directives
Browse files Browse the repository at this point in the history
  • Loading branch information
jramsdale committed Aug 22, 2018
1 parent 1a0a2c9 commit a312c54
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions scripts/create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ set -o nounset
set -o pipefail

ROOT=$(dirname "${BASH_SOURCE[0]}")/..
# shellcheck disable=SC1090
source "$ROOT"/scripts/common.sh

# Generate the variables to be used by Terraform
# shellcheck disable=SC1090
source "$ROOT"/scripts/generate-tfvars.sh

# Enable required GCP APIs
Expand Down
1 change: 1 addition & 0 deletions scripts/teardown.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ set -o nounset
set -o pipefail

ROOT=$(dirname "${BASH_SOURCE[0]}")/..
# shellcheck disable=SC1090
source "$ROOT"/scripts/common.sh

# Tear down Terraform-managed resources and remove generated tfvars
Expand Down
3 changes: 2 additions & 1 deletion scripts/validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ set -o nounset
set -o pipefail

ROOT=$(dirname "${BASH_SOURCE[0]}")/..
# shellcheck disable=SC1090
source "$ROOT"/scripts/common.sh

APP_MESSAGE="deployment \"$APP_NAME\" successfully rolled out"
Expand Down Expand Up @@ -53,7 +54,7 @@ while true
do
sleep 1
EXT_IP=$(kubectl get svc "$APP_NAME" --namespace default \
-ojsonpath='{.status.loadBalancer.ingress[0].ip}')"
-ojsonpath='{.status.loadBalancer.ingress[0].ip}')
EXT_PORT=$(kubectl --namespace default get service "$APP_NAME" \
--namespace default -o=jsonpath='{.spec.ports[0].port}')

Expand Down

0 comments on commit a312c54

Please sign in to comment.