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 9978c7d commit c793434Copy full SHA for c793434
tools/scripts/check-k8s.sh
@@ -89,7 +89,7 @@ checkClusterResources() {
89
#--- Check crossplane not synched resources
90
result="$(kubectl get crossplane -A --request-timeout=1s -o json 2>/dev/null | jq -r '.items[]|{kind} + .metadata + .status.conditions[]?|select((.type == "Synced") and .status == "False")|.kind + " " + .name + " " + .status')"
91
if [ "${result}" != "" ] ; then
92
- printf "\n\n%bKIND CROSSPLANE_NAME SYNCED%b\n${result}" "${GREEN}" "${STD}" | column -t
+ printf "\n" ; printf "%bKIND CROSSPLANE_NAME SYNCED%b\n${result}" "${GREEN}" "${STD}" | column -t
93
fi
94
95
}
0 commit comments