From eb24bd6070110a61281bd85a45bdc39f2a63017b Mon Sep 17 00:00:00 2001 From: Jakub Warczarek Date: Tue, 16 Jul 2024 19:17:47 +0200 Subject: [PATCH] CR fixes --- api/v1alpha1/kongplugin_installation_types.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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"