File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -40,9 +40,8 @@ function clear_routers_status() {
40
40
local route_name=" ${2} "
41
41
local router_name=" ${3} "
42
42
local my_json_blob; my_json_blob=$( oc get --raw http://localhost:8001/oapi/v1/namespaces/" ${namespace} " /routes/" ${route_name} " /)
43
- local index; index=$( echo " ${my_json_blob} " | jq ' .status.ingress | map(.routerName != "' ${router_name} ' ") | index(false)' )
44
- if [[ " ${index} " != null ]]; then
45
- local modified_json; modified_json=$( echo " ${my_json_blob} " | jq ' del(.status.ingress[' ${index} ' ])' )
43
+ local modified_json; modified_json=$( echo " ${my_json_blob} " | jq ' ."status"."ingress"|=map(select(.routerName != "' ${router_name} ' "))' )
44
+ if [[ " ${modified_json} " != " $( echo " ${my_json_blob} " | jq ' .' ) " ]]; then
46
45
curl -s -X PUT http://localhost:8001/oapi/v1/namespaces/" ${namespace} " /routes/" ${route_name} " /status --data-binary " ${modified_json} " -H " Content-Type: application/json" > /dev/null
47
46
echo " route status for route " ${route_name} " set by router " ${router_name} " cleared"
48
47
else
You can’t perform that action at this time.
0 commit comments