diff --git a/crds/workspace.devfile.io_devworkspaces.v1beta1.yaml b/crds/workspace.devfile.io_devworkspaces.v1beta1.yaml index c14c6050e..4a6a5d32b 100644 --- a/crds/workspace.devfile.io_devworkspaces.v1beta1.yaml +++ b/crds/workspace.devfile.io_devworkspaces.v1beta1.yaml @@ -4088,13 +4088,9 @@ spec: name: Phase type: string - JSONPath: .status.message - description: Additional information about workspace state + description: Additional information about the workspace name: Info type: string - - JSONPath: .status.ideUrl - description: Url endpoint for accessing workspace - name: URL - type: string name: v1alpha2 schema: openAPIV3Schema: diff --git a/crds/workspace.devfile.io_devworkspaces.yaml b/crds/workspace.devfile.io_devworkspaces.yaml index c4dbf1f8c..3a8ef108d 100644 --- a/crds/workspace.devfile.io_devworkspaces.yaml +++ b/crds/workspace.devfile.io_devworkspaces.yaml @@ -4085,14 +4085,10 @@ spec: jsonPath: .status.phase name: Phase type: string - - description: Additional information about workspace state + - description: Additional information about the workspace jsonPath: .status.message name: Info type: string - - description: Url endpoint for accessing workspace - jsonPath: .status.ideUrl - name: URL - type: string name: v1alpha2 schema: openAPIV3Schema: diff --git a/pkg/apis/workspaces/v1alpha2/devworkspace_types.go b/pkg/apis/workspaces/v1alpha2/devworkspace_types.go index 0cd332ba6..03055b8b6 100644 --- a/pkg/apis/workspaces/v1alpha2/devworkspace_types.go +++ b/pkg/apis/workspaces/v1alpha2/devworkspace_types.go @@ -72,8 +72,7 @@ const ( // +kubebuilder:resource:path=devworkspaces,scope=Namespaced,shortName=dw // +kubebuilder:printcolumn:name="Workspace ID",type="string",JSONPath=".status.workspaceId",description="The workspace's unique id" // +kubebuilder:printcolumn:name="Phase",type="string",JSONPath=".status.phase",description="The current workspace startup phase" -// +kubebuilder:printcolumn:name="Info",type="string",JSONPath=".status.message",description="Additional information about workspace state" -// +kubebuilder:printcolumn:name="URL",type="string",JSONPath=".status.ideUrl",description="Url endpoint for accessing workspace" +// +kubebuilder:printcolumn:name="Info",type="string",JSONPath=".status.message",description="Additional information about the workspace" // +devfile:jsonschema:generate // +kubebuilder:storageversion type DevWorkspace struct {