Skip to content

Commit b6b8781

Browse files
committed
e2e: Infoblox - use 2.12.2 WAPI version
1 parent ace229b commit b6b8781

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

test/e2e/infoblox.go

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,18 @@ const (
3535
infobloxGridMasterHostnameEnvVar = "INFOBLOX_GRID_MASTER_HOSTNAME"
3636
trustedCAConfigMapEnvVar = "TRUSTED_CA_CONFIGMAP_NAME"
3737
defaultWAPIPort = "443"
38-
defaultWAPIVersion = "2.3.1"
39-
defaultTLSVerify = "false"
40-
defaultHTTPRequestTimeout = 20
41-
defaultHTTPConnPool = 10
42-
defaultHostFilename = "host"
43-
defaultUsernameFilename = "username"
44-
defaultPasswordFilename = "password"
45-
defaultMasterHostnameFilename = "masterhostname"
46-
operatorContainerName = "operator"
38+
// https://community.infoblox.com/cixhp49439/attachments/cixhp49439/IPAM/6153/2/NIOS_8.6.2_ReleaseNotesREVC.pdf
39+
// Chapter: "Changes to Infoblox API and Restful API (WAPI)"
40+
// "2.12.2" version is recommended for NIOS 8.6.2 (our Infoblox test instance is currently 8.6.4).
41+
defaultWAPIVersion = "2.12.2"
42+
defaultTLSVerify = "false"
43+
defaultHTTPRequestTimeout = 20
44+
defaultHTTPConnPool = 10
45+
defaultHostFilename = "host"
46+
defaultUsernameFilename = "username"
47+
defaultPasswordFilename = "password"
48+
defaultMasterHostnameFilename = "masterhostname"
49+
operatorContainerName = "operator"
4750
)
4851

4952
type infobloxTestHelper struct {

0 commit comments

Comments
 (0)