@@ -35,15 +35,18 @@ const (
35
35
infobloxGridMasterHostnameEnvVar = "INFOBLOX_GRID_MASTER_HOSTNAME"
36
36
trustedCAConfigMapEnvVar = "TRUSTED_CA_CONFIGMAP_NAME"
37
37
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"
47
50
)
48
51
49
52
type infobloxTestHelper struct {
0 commit comments