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
+15-4
Original file line number
Diff line number
Diff line change
@@ -51,12 +51,16 @@ var (
51
51
kubeconfigstring// path to kubeconfig file
52
52
deleteNamespacebool// whether or not to delete test namespaces
53
53
cloudConfigFilestring// path to cloud provider config file
54
+
ccmSeclistIDstring// The ocid of the loadbalancer subnet seclist. Optional.
55
+
k8sSeclistIDstring// The ocid of the k8s worker subnet seclist. Optional.
54
56
)
55
57
56
58
funcinit() {
57
59
flag.StringVar(&kubeconfig, "kubeconfig", "", "Path to Kubeconfig file with authorization and master location information.")
58
60
flag.BoolVar(&deleteNamespace, "delete-namespace", true, "If true tests will delete namespace after completion. It is only designed to make debugging easier, DO NOT turn it off by default.")
59
61
flag.StringVar(&cloudConfigFile, "cloud-config", "", "The path to the cloud provider configuration file. Empty string for no configuration file.")
62
+
flag.StringVar(&ccmSeclistID, "ccm-seclist-id", "", "The ocid of the loadbalancer subnet seclist. Enables additional seclist rule tests. If specified the 'k8s-seclist-id parameter' is also required.")
63
+
flag.StringVar(&k8sSeclistID, "k8s-seclist-id", "", "The ocid of the k8s worker subnet seclist. Enables additional seclist rule tests. If specified the 'ccm-seclist-id parameter' is also required.")
60
64
}
61
65
62
66
// Framework is used in the execution of e2e tests.
0 commit comments