Has anyone been able to successfully install IFS Cloud 22R2 with high availability?
Here’s what I have done for configuration, following the instructions in https://docs.ifs.com/techdocs/22r2/070_remote_deploy/010_installing_fresh_system/030_preparing_server/50_windows_managementserver/#high_availability:
- Load balancer
- 3 middle tier Ubuntu servers
- In main_config.json:
- Linuxhost: hostname of the load balancer
- LoadBalancerPrivateIP: IP address of the load balancer
- Nodes: array of hostnames of the middle tier servers
When I run .\main.ps1 -resource 'KEY'
it attempts to copy the public key to the load balancer, not the middle tier servers. I can tell this from the output - the Connection Closed message shows the IP address of the load balancer. I tried skipping this step and copying the public key manually to the authorized_keys file on the middle tier servers, but .\main.ps1 -resource 'KUBERNETES'
just attempts to install Kubernetes on the load balancer. The whole thing is basically ignoring the Nodes and LoadBalancerPrivateIP properties in main_config.
Am I missing something?