Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 95c32b6

Browse files
committedMar 13, 2023
some changes
1 parent f85811a commit 95c32b6

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed
 

‎modules/tutorials/examples/ldap-auth/20-verify-superset.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ kubectl rollout status --watch --timeout=5m statefulset/superset-node-default
2020

2121
sleep 5
2222

23+
echo "Stackable services:"
24+
25+
stackablectl svc list
26+
2327
echo "Checking if login is working correctly ..."
2428

2529
username="admin"

‎modules/tutorials/examples/ldap-auth/utils.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ superset_login() {
1414

1515
json_header='Content-Type: application/json'
1616

17+
echo "Checking if Superset is reachable at $superset_addr"
18+
return_code=$(curl --insecure -v -o /dev/null -w "%{http_code}" "$superset_addr")
19+
echo "$return_code"
20+
1721
local response
1822
response=$(curl -Ls "$superset_endpoint" -H "$json_header" --data "$request_data")
1923

0 commit comments

Comments
 (0)
Please sign in to comment.