1234567891011121314151617181920212223242526272829303132333435 |
- #!/usr/bin/env bash
- set -xeuo pipefail
- CONFFILE="stretch-cluster-only.yaml"
- NAMESPACE="stretch-cluster-only"
- OUTFILE="stretch-cluster-test.log"
- kubectl create namespace "$NAMESPACE"
- sed \
- -e "s|namespace:.*|namespace: $NAMESPACE|" \
- -e 's|publicNetwork:.*|publicNetwork: ""|' \
- -e 's|clusterNetwork:.*|clusterNetwork: "default/cluster-net"|' \
- tests/scripts/multus/stretch.yaml >"$CONFFILE"
- cat "$CONFFILE"
- ./rook --log-level DEBUG multus validation run --config "$CONFFILE" 2>&1 | tee "$OUTFILE"
- # only OSDs get cluster network, so only OSD test pods should start running
- # 3 node types:
- # arbiter-node (1 node, on control-plane)
- grep 'starting 0 osd validation clients for node type "arbiter-node"' "$OUTFILE"
- # storage-nodes (2 nodes)
- grep 'starting 2 osd validation clients for node type "storage-nodes"' "$OUTFILE"
- # worker-nodes (1 node)
- grep 'starting 0 osd validation clients for node type "worker-nodes"' "$OUTFILE"
- # total
- grep "all 4 clients are 'Ready'" "$OUTFILE"
- # should be no non-terminating resources in namespace after successful test
- [[ -z "$(kubectl --namespace "$NAMESPACE" get pods --no-headers 2>/dev/null | grep -v Terminating)" ]]
|