Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions pkg/apis/workspaces/v1alpha1/volumeComponent.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,9 @@ type Volume struct {
// +optional
// Size of the volume
Size string `json:"size,omitempty"`

// +optional
// Ephemeral volumes are not stored persistently across restarts. Defaults
// to false
Ephemeral bool `json:"ephemeral,omitempty"`
Comment thread
sleshchenko marked this conversation as resolved.
}
5 changes: 5 additions & 0 deletions pkg/apis/workspaces/v1alpha2/volumeComponent.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,9 @@ type Volume struct {
// +optional
// Size of the volume
Size string `json:"size,omitempty"`

// +optional
// Ephemeral volumes are not stored persistently across restarts. Defaults
// to false
Ephemeral bool `json:"ephemeral,omitempty"`
Comment thread
maysunfaisal marked this conversation as resolved.
}