Merge pull request #91 from qiujian16/fix-condition

Fix wrong condition message in klusterlet
This commit is contained in:
OpenShift Merge Robot
2020-12-10 09:06:17 -05:00
committed by GitHub

View File

@@ -148,7 +148,7 @@ func checkAgentDegradedCondition(
Type: degradedType,
Status: metav1.ConditionFalse,
Reason: fmt.Sprintf("%sFunctional", agentName),
Message: fmt.Sprintf("%s is managing credentials", agentName),
Message: fmt.Sprintf("%s is functioning correctly", agentName),
}
}