Hi,
I have SHE deployed on a host. I want to add another host to the environment configured
for the SHE so I can test HA. Currently using the SDK as follows
HostedEngineBuilder hostedEngineBuilder = new
HostedEngineBuilder().active(true).configured(true);
HostBuilder hb = new HostBuilder()
.name(hostName)
.rootPassword(hostPassword)
.overrideIptables(true)
.address(hostAddress)
.hostedEngine(hostedEngineBuilder);
Am I missng a step? The above creates a Host, but the HostedEngine deploy isn't being
done. Doing it via the UI through Add Host > HostedEngine > change behaviour to
"deploy" works fine.
TIA