Skip to content
Open
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions test/extended/storage/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ const (
defaultPollingTime = 2 * time.Second
)

// Storage operator and CSI driver namespace constants
const (
CSONamespace = "openshift-cluster-storage-operator" // Cluster Storage Operator namespace
CSINamespace = "openshift-cluster-csi-drivers" // Default CSI driver operators namespace
ManilaCSINamespace = "openshift-manila-csi-driver" // Manila CSI driver namespace (OpenStack only)
)

// IsCSOHealthy checks whether the Cluster Storage Operator is healthy
func IsCSOHealthy(oc *exutil.CLI) (bool, error) {
// CSO healthyStatus:[degradedStatus:False, progressingStatus:False, availableStatus:True, upgradeableStatus:True]
Expand Down
Loading