0.12.0-alpha2
Pre-release
Pre-release
Alpha release
Changelog
- Fix engine installation failure on CentOS 8 due to missing iptables
- Use WinRM for windows hosts as an alternative to SSH
Note
The configuration version has gone from v1beta1
to v1beta2
. The old syntax still works if you only use SSH.
Before
apiVersion: launchpad.mirantis.com/v1beta1
kind: UCP
metadata:
name: ucpcluster
spec:
hosts:
- address: "127.0.0.1"
sshPort: 9022
sshKeyPath: "./id_rsa_launchpad"
user: "root"
role: "manager"
Now:
apiVersion: launchpad.mirantis.com/v1beta2 # <-- changed from v1beta1 to v1beta2
kind: UCP
metadata:
name: ucpcluster
spec:
hosts:
- address: 10.0.0.1
ssh: # <-- ssh configuration has gone under the "ssh" keyword
port: 22
keyPath: ~/.ssh/id_rsa
user: root
- address: 10.0.0.2
winRM: # winrm support has been added. here are all the configuration options:
user: Administrator
password: abcd1234
port: 5986
useHTTPS: true
insecure: false
useNTLM: false
caCertPath: ~/.certs/cacert.pem
certPath: ~/.certs/cert.pem
keyPath: ~/.certs/key.pem