-
Notifications
You must be signed in to change notification settings - Fork 200
Update install-config #86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update install-config #86
Conversation
dbf028b to
db6c447
Compare
|
Sorry for all the pushes, should be done now. |
Update to v1beta3 install-config.yaml Use the defaults for everything except the pieces of information that are required or that we want to override. We were setting the machine pool replicas to null to try and get "create cluster" to launch a bootstrap VM but no masters. According to the "FIXME: this doesn't work", it looks like we're not depending on this right now. The connection URI isn't actually used for generating ignition configs.
7c83451 to
805beac
Compare
|
No worries, rebased and squashed |
| URI: qemu:///system | ||
| network: | ||
| if: tt0 | ||
| libvirt: {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, yeah, good catch - the URI is there because I was originally trying to use the openshift-install libvirt backend to launch the bootstrap vm via "create cluster", but it turns out evern with replicas:null it still builds a single master node as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While we're on this lets change this to platform: none - it should be the same as libvirt, but later on we change it for baremetal use cases
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried this and you need to do:
platform:
none: {}
Just setting platform to either null or the string none doesn't work, there's a json marshalling error from openshift-install
derekhiggins
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
works for me
Update to v1beta3 version. Remove everything except where we want to supply required information or override the defaults.