Show deprecated editors
Learn how to show deprecated Che editors on the Dashboard. By default, the Dashboard UI hides them.
Prerequisites
-
An active
kubectl
session with administrative permissions to the Kubernetes cluster. See Overview of kubectl. -
jq
. See Downloadingjq
.
Procedure
-
An editor ID has the following format:
publisher/name/version
. Find out the IDs of the deprecated editors:kubectl exec deploy/che-dashboard -n eclipse-che \ -- curl -s http://localhost:8080/dashboard/api/editors | jq -r '[.[] | select(.metadata.tags != null) | select(.metadata.tags[] | contains("Deprecate")) | "\(.metadata.attributes.publisher)/\(.metadata.name)/\(.metadata.attributes.version)"]'
-
Configure the
CheCluster
Custom Resource. See Using the CLI to configure the CheCluster Custom Resource.spec: components: dashboard: deployment: containers: - env: - name: CHE_SHOW_DEPRECATED_EDITORS value: 'true'