summaryrefslogtreecommitdiff
path: root/playbooks/openstack/sample-inventory
AgeCommit message (Collapse)Author
2018-02-02Removing prefix and replacing with cidr, pool_start and pool_end variables.Matt Bruzek
2018-01-22[1506750] Ensure proper hostname check overrideRussell Teague
2018-01-16Move the OpenStack dynamic inventory from sampleTomas Sedovic
Keeping the dynamic inventory in the `sample-inventory` alongside the `group_vars` poses a problem: when we update the inventory, our users won't get the latest version. The dynamic inventory should be independent of the OpenShift or OpenStack configuration and the users should be able to either pass it explicitly or create a symlink if they want.
2018-01-10Allow using server names in openstack dynamic invTomas Sedovic
When deploying on OpenStack with internal DNS configured, this will set `openshift_hostname` to the Nova server name instead of its IP address. Without those two matching, the OpenStack cloud provider configuration will fail and the OpenShift nodes will not start.
2018-01-10Specify the Cinder version in the inventoryTomas Sedovic
As described in[1], OpenShift currently only works with Block Storage API v2 and the version autodetection is failing to figure that out. [1]: https://github.com/openshift/openshift-docs/issues/5730
2018-01-08Merge pull request #6580 from tomassedovic/openstack-fixesOpenShift Merge Robot
Automatic merge from submit-queue. Openstack fixes This includes a few fixes for the OpenStack provider. It should fix #6555 and possibly also #6560.
2018-01-02Return a openshift_node_labels as a dictTomas Sedovic
The OpenStack dynamic inventory was setting the `openshift_node_labels` value as a string which causes a failure with the `lib_utils_oo_dict_to_keqv_list` filter. Fixes #6555
2018-01-02OpenStack provisioning -- support cns.Jiri Mencak
2018-01-02Fix yaml syntax error in the sample inventoryTomas Sedovic
2017-12-07Merge pull request #6310 from tomassedovic/openstack-rhel-subscriptionMichael Gugino
Optionally subscribe OpenStack RHEL nodes
2017-12-05Remove all references to pacemaker (pcs, pcsd) and ↵Andrew Butcher
openshift.master.cluster_method. With pacemaker removed there is no longer a need for openshift.master.cluster_method. We only have one option.
2017-12-05Document testing repos for dev purposesBogdan Dobrelya
Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
2017-12-04Use openshift testing repos for openstackBogdan Dobrelya
Use testing openshift repos to sidestep packaging issues for 3.6 clients being used in 3.7 deployments or something. Poke host requirements Centos 7.4 as 7.3 can't see that testing repo. Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
2017-11-29Update the doc textTomas Sedovic
2017-11-29Optionally subscribe OpenStack RHEL nodesTomas Sedovic
2017-11-28Use IP addresses for OpenStack nodesTomas Sedovic
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.
2017-11-07Namespace the docker volumesTomas Sedovic
2017-11-07Namespace the OpenStack varsTomas Sedovic
This makes sure that all the variables used in the `openshift_openstack` role are prefixed with `openshift_openstack_` as is the convention.
2017-11-07Add the DNS updates and rename the openstack varsTomas Sedovic
Most of the vars in `roles/openshift_openstack/defaults/main.yml` are now prefixed with `openstack_`.
2017-11-07Remove the static_inventory and bastion samplesTomas Sedovic
These options will have no effect until we add static inventory and bastion support back in.
2017-11-07Add openshift_openstack role and move tasks thereTomas Sedovic
All the tasks that were previously in playbooks are now under `roles/openshift_openstack`. The `openshift-cluster` directory now only contains playbooks that include tasks from that role. This makes the structure much closer to that of the AWS provider.
2017-11-07Move the OpenStack playbooksTomas Sedovic
We move them from `playbooks/provisioning/openstack` to `playbooks/openstack` to mirror `playbooks/aws`.