diff --git a/pkg/console/dashboard_panels.go b/pkg/console/dashboard_panels.go index a3fdc3237..92c915587 100644 --- a/pkg/console/dashboard_panels.go +++ b/pkg/console/dashboard_panels.go @@ -453,7 +453,7 @@ func k8sIsReady() bool { } func chartIsInstalled() bool { - cmd := exec.Command("/bin/sh", "-c", `kubectl -n fleet-local get ManagedChart harvester -o jsonpath='{.status.conditions}' | jq 'map(select(.type == "Processed" and .status == "True")) | length'`) + cmd := exec.Command("/bin/sh", "-c", `kubectl -n fleet-local get ManagedChart harvester -o jsonpath='{.status.conditions}' | jq 'map(select(.type == "Ready" and .status == "True")) | length'`) cmd.Env = os.Environ() output, err := cmd.Output() outStr := string(output)