diff --git a/doc/install/install-openshift.md b/doc/install/install-openshift.md index 95e82a019..d45501918 100644 --- a/doc/install/install-openshift.md +++ b/doc/install/install-openshift.md @@ -356,8 +356,8 @@ To enable the Kuadrant console plugin: 2. Switch to the **Admin** perspective. 3. Navigate to **Home** > **Overview**. 4. In the **Dynamic Plugins** section of the status box, click **View all**. -5. In the **Console plugins** area, find the `kuadrant-console` plugin. It should be listed but disabled. -6. Click the **Disabled** button next to the `kuadrant-console` plugin. +5. In the **Console plugins** area, find the `kuadrant-console-plugin` plugin. It should be listed but disabled. +6. Click the **Disabled** button next to the `kuadrant-console-plugin` plugin. 7. Select the **Enabled** radio button, and then click **Save**. 8. Wait for the plugin status to change to **Loaded**. diff --git a/pkg/openshift/consoleplugin/common.go b/pkg/openshift/consoleplugin/common.go index c5e1b202d..e3998f156 100644 --- a/pkg/openshift/consoleplugin/common.go +++ b/pkg/openshift/consoleplugin/common.go @@ -1,8 +1,7 @@ package consoleplugin const ( - KuadrantConsoleName = "kuadrant-console" - KuadrantPluginComponent = "kuadrant-plugin" + KuadrantConsoleName = "kuadrant-console-plugin" ) var ( @@ -13,7 +12,7 @@ var ( func CommonLabels() map[string]string { return map[string]string{ AppLabelKey: AppLabelValue, - "app.kubernetes.io/component": KuadrantPluginComponent, + "app.kubernetes.io/component": KuadrantConsoleName, "app.kubernetes.io/managed-by": "kuadrant-operator", "app.kubernetes.io/instance": KuadrantConsoleName, "app.kubernetes.io/name": KuadrantConsoleName,