We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c80f642 commit 49e49ffCopy full SHA for 49e49ff
.github/workflows/installation-test.yml
@@ -41,6 +41,15 @@ jobs:
41
# Wait for Grafana to be ready
42
timeout 60s bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost:3000)" != "302" ]]; do sleep 5; done' || exit 1
43
44
+ - name: Test KairosDB accessibility
45
+ run: |
46
+ # Wait for KairosDB to be ready
47
+ timeout 60s bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost:8083/api/v1/health/check)" != "204" ]]; do
48
+ echo "Waiting for KairosDB..."
49
+ sleep 5
50
+ done' || exit 1
51
+ echo "KairosDB is healthy"
52
+
53
- name: Test MQTT broker
54
run: |
55
# Install mosquitto-clients for MQTT testing
0 commit comments