Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌱 rename ClusterWorkspace to Workspace #2888

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions pkg/apis/tenancy/v1alpha1/types_workspacetype.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ type WorkspaceType struct {

type WorkspaceTypeSpec struct {
// initializer determines if this WorkspaceType has an associated initializing
// controller. These controllers are used to add functionality to a ClusterWorkspace;
// all controllers must finish their work before the ClusterWorkspace becomes ready
// controller. These controllers are used to add functionality to a Workspace;
// all controllers must finish their work before the Workspace becomes ready
// for use.
//
// One initializing controller is supported per WorkspaceType; the identifier
Expand All @@ -75,22 +75,22 @@ type WorkspaceTypeSpec struct {
// other type in evaluation of limitAllowedChildren and limitAllowedParents constraints.
//
// A dependency cycle stop this WorkspaceType from being admitted as the type
// of a ClusterWorkspace.
// of a Workspace.
//
// A non-existing dependency stop this WorkspaceType from being admitted as the type
// of a ClusterWorkspace.
// of a Workspace.
//
// +optional
Extend WorkspaceTypeExtension `json:"extend,omitempty"`

// additionalWorkspaceLabels are a set of labels that will be added to a
// ClusterWorkspace on creation.
// Workspace on creation.
//
// +optional
AdditionalWorkspaceLabels map[string]string `json:"additionalWorkspaceLabels,omitempty"`

// defaultChildWorkspaceType is the WorkspaceType that will be used
// by default if another, nested ClusterWorkspace is created in a workspace
// by default if another, nested Workspace is created in a workspace
// of this type. When this field is unset, the user must specify a type when
// creating nested workspaces. Extending another WorkspaceType does
// not inherit its defaultChildWorkspaceType.
Expand Down