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

Convert deleting to destroying within persistent instance #49 #50

Closed
Changes from all commits
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
6 changes: 3 additions & 3 deletions api/v1alpha1/persistentstorageinstance_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ const (
PSIStateActive PersistentStorageInstanceState = "active"

// A #DW destroy_persistent directive has been issued in a workflow.
// Once all other workflows with persistent_dw reservations on the PSI complete, the PSI will be deleted.
// New #DW persistent_dw requests after the 'Deleting' state has been entered will fail.
PSIStateDeleting PersistentStorageInstanceState = "deleting"
// Once all other workflows with persistent_dw reservations on the PSI complete, the PSI will be destroyed.
// New #DW persistent_dw requests after the PSI enters the 'destroying' state will fail.
PSIStateDestroying PersistentStorageInstanceState = "destroying"
)

// PersistentStorageInstanceSpec defines the desired state of PersistentStorageInstance
Expand Down