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
+4
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,7 @@ var (
103
103
staticSnapshotCompartmentOCIDstring// Compartment ID for cross compartment snapshot test
104
104
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)
105
105
enableParallelRunbool
106
+
addOkeSystemTagsbool
106
107
)
107
108
108
109
funcinit() {
@@ -134,6 +135,7 @@ func init() {
134
135
flag.StringVar(&staticSnapshotCompartmentOCID, "static-snapshot-compartment-id", "", "Compartment ID for cross compartment snapshot test")
135
136
flag.BoolVar(&runUhpE2E, "run-uhp-e2e", false, "Run UHP E2Es as well")
136
137
flag.BoolVar(&enableParallelRun, "enable-parallel-run", true, "Enables parallel running of test suite")
138
+
flag.BoolVar(&addOkeSystemTags, "add-oke-system-tags", false, "Adds oke system tags to new and existing loadbalancers and storage resources")
137
139
}
138
140
139
141
// Framework is the context of the text execution.
@@ -167,6 +169,7 @@ type Framework struct {
167
169
// Compartment ID for cross compartment snapshot test
168
170
StaticSnapshotCompartmentOcidstring
169
171
RunUhpE2Ebool
172
+
AddOkeSystemTagsbool
170
173
}
171
174
172
175
// New creates a new a framework that holds the context of the test
0 commit comments