Skip to content

Commit b526ff6

Browse files
alexbranddkoshkin
authored andcommitted
Use the public IP for lb_fqdn in NFS test
The helm installation fails because the lb_fqdn is pointing to the machine's hostname, which ends up in the kubeconfig that is used by helm to initialize tiller. Given that this hostname is not resolvable from the testing machine, the test fails.
1 parent dc4e255 commit b526ff6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration/nfsshare.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ func testNFSShare(aws infrastructureProvisioner, distro linuxDistro) {
1212
Etcd: []NodeDeets{node},
1313
Master: []NodeDeets{node},
1414
Worker: []NodeDeets{node},
15-
MasterNodeFQDN: node.Hostname,
16-
MasterNodeShortName: node.Hostname,
15+
MasterNodeFQDN: node.PublicIP,
16+
MasterNodeShortName: node.PublicIP,
1717
SSHKeyFile: sshKey,
1818
SSHUser: node.SSHUser,
1919
NFSVolume: []NFSVolume{

0 commit comments

Comments
 (0)