Skip to content

Commit 3ae4c0a

Browse files
committed
fix: update bash scripts for issues highlighted by linting and update the wiab-staging artifact hash
1 parent aacd2da commit 3ae4c0a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ansible/inventory/demo/wiab-staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ wiab-staging:
66
ansible_user: 'demo'
77
ansible_ssh_private_key_file: "~/.ssh/id_ed25519"
88
vars:
9-
artifact_hash: f1f624256bdab0f9f76158c7f45e0618ee641237
9+
artifact_hash: 78a52d4686b6de91853d715fd08ef42fe8e2fd20

bin/debug_logs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ echo "------------------------------------"
77
namespaces="cert-manager-ns default"
88
echo "Namespaces = $namespaces"
99
for ns in $namespaces; do
10-
pods=$(kubectl get pods -n $ns -o=jsonpath='{.items[*].metadata.name}')
10+
pods=$(kubectl get pods -n "$ns" -o=jsonpath='{.items[*].metadata.name}')
1111
echo "Pods in namespace: $ns = $pods"
1212
for pod in $pods; do
1313
echo "Logs for pod: $pod"

bin/helm-operations.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ fi
2525

2626
function dump_debug_logs {
2727
if [[ "$DUMP_LOGS_ON_FAIL" == "TRUE" ]]; then
28-
$BASE_DIR/bin/debug_logs.sh
28+
"$BASE_DIR"/bin/debug_logs.sh
2929
fi
3030
}
3131
trap dump_debug_logs ERR

0 commit comments

Comments
 (0)