You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/e2e/framework/framework.go
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ var (
88
88
architecturestring
89
89
volumeHandlestring// The FSS mount volume handle
90
90
staticSnapshotCompartmentOCIDstring// Compartment ID for cross compartment snapshot test
91
-
createUhpNodepoolbool// Creates UHP nodepool instead of normal nodepool
91
+
runUhpE2Ebool// Whether to run UHP E2Es, requires Volume Management Plugin enabled on the node and 16+ cores (check blockvolumeperformance public doc for the exact requirements)
92
92
)
93
93
94
94
funcinit() {
@@ -118,7 +118,7 @@ func init() {
118
118
flag.StringVar(&architecture, "architecture", "", "CPU architecture to be used for testing.")
119
119
120
120
flag.StringVar(&staticSnapshotCompartmentOCID, "static-snapshot-compartment-id", "", "Compartment ID for cross compartment snapshot test")
121
-
flag.BoolVar(&createUhpNodepool, "create-uhp-nodepool", false, "Run UHP E2Es as well")
121
+
flag.BoolVar(&runUhpE2E, "run-uhp-e2e", false, "Run UHP E2Es as well")
122
122
}
123
123
124
124
// Framework is the context of the text execution.
@@ -151,7 +151,7 @@ type Framework struct {
151
151
152
152
// Compartment ID for cross compartment snapshot test
153
153
StaticSnapshotCompartmentOcidstring
154
-
CreateUhpNodepoolbool
154
+
RunUhpE2Ebool
155
155
}
156
156
157
157
// New creates a new a framework that holds the context of the test
0 commit comments