diff --git a/api/v1alpha1/kongplugin_installation_types.go b/api/v1alpha1/kongplugin_installation_types.go index cd792fd1b..3a02d1ce0 100644 --- a/api/v1alpha1/kongplugin_installation_types.go +++ b/api/v1alpha1/kongplugin_installation_types.go @@ -113,14 +113,14 @@ const ( // // * "Pending". // - KongPluginInstallationConditionStatusAccepted KongPluginInstallationConditionType = "Ready" + KongPluginInstallationConditionStatusAccepted KongPluginInstallationConditionType = "Accepted" - // KongPluginInstallationReasonReady is used with the "Ready" condition when - // the condition is "True". + // KongPluginInstallationReasonReady indicates that the controller has downloaded the plugin + // and can install it on a DataPlane or Gateway. KongPluginInstallationReasonReady KongPluginInstallationConditionReason = "Ready" // KongPluginInstallationReasonFailed is used with the "Ready" condition when - // the KongPluginInstallation can't be configured e.g. image can't be fetched. + // the KongPluginInstallation can't be fetched e.g. image can't be fetched. // More details can be obtained from the condition's message. KongPluginInstallationReasonFailed KongPluginInstallationConditionReason = "Failed"