summaryrefslogtreecommitdiffstats
path: root/playbooks/openstack/advanced-configuration.md
Commit message (Collapse)AuthorAgeFilesLines
* Fix openshift_openstack_provision_user_commandsBogdan Dobrelya2018-02-121-3/+3
| | | | Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
* Fix wordingBogdan Dobrelya2018-02-091-1/+1
| | | | Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
* Fix cloud init runcmd templatingBogdan Dobrelya2018-02-091-6/+6
| | | | Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
* Note ignored Heat user data changes for openstackBogdan Dobrelya2018-02-091-0/+4
| | | | Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
* Clarify the ansible playbook vs cloud-initBogdan Dobrelya2018-02-091-3/+27
| | | | | | | | Document use cases for custom post-provision ansible hooks vs cloud-init runcmd shell commands. Rename to openshift_openstack_cloud_init_runcmd. Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
* [openstack] custom user commands for cloud-initBogdan Dobrelya2018-02-091-0/+4
| | | | | | | | | | | | Allow to specify additional user commands executed on all Nova servers provisioned via Heat. An example use case is installing and starting os-collect-config agents to put Nova servers under the configuration management driven via the host openstack cloud Heat services. This allows to integrate with another deployment tools like TripleO. Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
* Adjust openstack provider dependencies versionsBogdan Dobrelya2018-01-151-4/+3
| | | | Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
* Merge pull request #6695 from mbruzek/openstack_md_fixesOpenShift Merge Robot2018-01-121-7/+7
|\ | | | | | | | | | | | | Automatic merge from submit-queue. Spelling and grammar changes to the advanced-configuration.md file. I noticed some spelling errors when trying to read the OpenStack `advanced_configuration.md` file so I wanted to contribute the fixed spelling.
| * Spelling and grammar changes to the advanced-configuration.md file.Matt Bruzek2018-01-101-7/+7
| |
* | Fix typo in the advanced config docsTomas Sedovic2018-01-101-1/+1
| |
* | Write guide on setting up PVs with CinderTomas Sedovic2018-01-101-0/+106
|/
* Allow 2 sets of hostnames for openstack providerBogdan Dobrelya2017-12-111-5/+16
| | | | | | | | | | | | | Support private/public hostnames suffixes for DNS records. Real hostnames, Inventory variables, Nova servers and ansible hostnames will ignore the custom suffixes. Those are only for nsupdates sent to external DNS servers. Related change: add openshift_openstack_public_dns_domain to the role defaults to not rely on the group vars example only. Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com> Co-authored-by: Tomas Sedovic <tsedovic@redhat.com>
* Cleanup byo referencesRussell Teague2017-12-081-2/+2
|
* Merge pull request #6340 from bogdando/openstack_cleanup_dnsScott Dodson2017-12-061-61/+6
|\ | | | | Cleanup not required dns bits
| * Fix and cleanup not required dns bitsBogdan Dobrelya2017-12-051-61/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Do not manage hostnames for openstack cloud provider, let cloud-init to do its job. * Make python-dns / dnspython dependency check conditional. * Drop not used dns node flavor and image. * Do not manage dns nodes and sec groups in heat stacks. * Keep supporting dynamic updates for private DNS records, yet only limited to an external DNS managed elsewhere (not deployed by the openshift_openstack provider). So users may still benefit from this feature, sending nsupdates to private and public servers as they want it. * Fix openstack default for external nsupdate keys. It should be undefined by default as the dns-populate logic is based on that. * Fix dns records generation for openstack provider's populate-dns * Update docs
* | Remove all references to pacemaker (pcs, pcsd) and ↵Andrew Butcher2017-12-051-1/+0
|/ | | | | | | openshift.master.cluster_method. With pacemaker removed there is no longer a need for openshift.master.cluster_method. We only have one option.
* Cleanup unused openstack provider codeBogdan Dobrelya2017-12-041-84/+0
| | | | | | | Remove references for bastion, ssh UI tunnek and static inventory. Update docs. Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
* Update the doc textTomas Sedovic2017-11-291-5/+5
|
* Use IP addresses for OpenStack nodesTomas Sedovic2017-11-281-29/+27
| | | | | | | | | | | | | Unlike other cloud providers, OpenStack VMs are not able to resolve each other by their names. If you try to run the playbooks against nodes without a pre-created /etc/hosts or a DNS that provides the hostname/ip resolution, it will fail. By setting the `openshift_hostname` variable to each node's IP address, we're able to deploy a functional cluster without running a custom DNS. It is still possible to provide an external server with nsupdate keys and have it be populated, but that is no longer a hard requirement.
* Namespace the OpenStack varsTomas Sedovic2017-11-071-40/+40
| | | | | This makes sure that all the variables used in the `openshift_openstack` role are prefixed with `openshift_openstack_` as is the convention.
* Add the DNS updates and rename the openstack varsTomas Sedovic2017-11-071-6/+5
| | | | | Most of the vars in `roles/openshift_openstack/defaults/main.yml` are now prefixed with `openstack_`.
* Move the OpenStack playbooksTomas Sedovic2017-11-071-0/+773
We move them from `playbooks/provisioning/openstack` to `playbooks/openstack` to mirror `playbooks/aws`.