Skip to content

Commit 4ea8650

Browse files
stephenfinwangke19
authored andcommitted
openstack-gather: Stop collecting loadbalancers (openshift#70212)
This is currently causing failures. We do not have enough context to figure out what is going on, so remove the steps for now so we can debug later. Signed-off-by: Stephen Finucane <[email protected]>
1 parent c511a47 commit 4ea8650

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

ci-operator/step-registry/openstack/gather/openstack-gather-commands.sh

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -180,21 +180,5 @@ for fip in $(jq -r '.[].ID' "${ARTIFACT_DIR_JSON}/openstack_fip_list.json"); do
180180
openstack floating ip show "$fip" >> "${ARTIFACT_DIR}/openstack_fips.log"
181181
done
182182

183-
# load balancers
184-
185-
openstack loadbalancer list -f json \
186-
| jq --arg CLUSTER_NAME "$CLUSTER_NAME" 'map(select(.name | test($CLUSTER_NAME)))' \
187-
> "${ARTIFACT_DIR_JSON}/openstack_loadbalancer_list.json"
188-
189-
for lb in $(jq -r '.[].ID' "${ARTIFACT_DIR_JSON}/openstack_loadbalancer_list.json"); do
190-
openstack loadbalancer show "$lb" -f json
191-
done | jq --slurp '.' > "${ARTIFACT_DIR_JSON}/openstack_loadbalancer_show.json"
192-
193-
touch "${ARTIFACT_DIR}/openstack_loadbalancers.log"
194-
for lb in $(jq -r '.[].ID' "${ARTIFACT_DIR_JSON}/openstack_loadbalancer_list.json"); do
195-
echo -e "\n$ openstack loadbalancer show $lb" >> "${ARTIFACT_DIR}/openstack_loadbalancers.log"
196-
openstack loadbalancer show "$lb" >> "${ARTIFACT_DIR}/openstack_loadbalancers.log"
197-
done
198-
199183

200184
collect_bootstrap_logs

0 commit comments

Comments
 (0)