diff --git a/nutanix/main_test.go b/nutanix/main_test.go index 197273f69..bcde564ee 100644 --- a/nutanix/main_test.go +++ b/nutanix/main_test.go @@ -42,6 +42,20 @@ type TestConfig struct { } `json:"protection_policy"` // sshKey required for ndb database provision test SSHKey string `json:"ssh_key"` + // NDB config + NDB struct { + RegisterClusterInfo struct { + ClusterIP string `json:"cluster_ip"` + Username string `json:"username"` + Password string `json:"password"` + DNS string `json:"dns"` + NTP string `json:"ntp"` + StaticIP string `json:"static_ip"` + Gateway string `json:"gateway"` + SubnetMask string `json:"subnet_mask"` + StorageContainer string `json:"strorage_container"` + } `json:"register_cluster_info"` + } `json:"ndb"` } type IPMIConfig struct { diff --git a/test_config.json b/test_config.json index 180e8c940..cd9218a18 100644 --- a/test_config.json +++ b/test_config.json @@ -59,7 +59,20 @@ "cluster_uuid":"" } }, - "ssh_key":"" + "ssh_key":"", + "ndb":{ + "register_cluster_info":{ + "cluster_ip": "", + "username": "", + "password":"", + "strorage_container":"", + "dns":"", + "ntp":"", + "static_ip":"", + "gateway":"", + "subnet_mask":"" + } + } }