Skip to content

Commit f760fab

Browse files
committed
[static] fix unlock
Signed-off-by: Itai Segall <itai.segall@digitalasset.com>
1 parent 4c0731a commit f760fab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-tools/cncluster

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1349,7 +1349,7 @@ function _check_stateful_sets() {
13491349
# Checks if any StatefulSets EXCEPT those with a prometheus image (which are part of the infra stack)
13501350
# are currently deployed
13511351
# grep exits with return code 1 if it finds no matches so we account for that
1352-
query_result=$(kubectl get StatefulSets -A -o json 2> /dev/null | jq '.items[].spec.template.spec.containers[].image' | { grep -v prometheus || test $? = 1; })
1352+
query_result=$(kubectl get StatefulSets -A -o json 2> /dev/null | jq '.items[].spec.template.spec.containers[].image' | grep -v postgres | { grep -v prometheus || test $? = 1; })
13531353
echo "$query_result"
13541354
}
13551355

0 commit comments

Comments
 (0)