summaryrefslogtreecommitdiffstats
path: root/roles/openshift_openstack/templates
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #6699 from bogdando/heat_user_dataOpenShift Merge Robot2018-02-121-0/+16
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatic merge from submit-queue. [openstack] custom user commands for cloud-init 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>
| * Fix openshift_openstack_provision_user_commandsBogdan Dobrelya2018-02-121-2/+2
| | | | | | | | Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
| * Fix cloud init runcmd templatingBogdan Dobrelya2018-02-091-2/+11
| | | | | | | | Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
| * Clarify the ansible playbook vs cloud-initBogdan Dobrelya2018-02-091-2/+2
| | | | | | | | | | | | | | | | 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>
| * Fix openstack cloud-init runcmd templatingBogdan Dobrelya2018-02-091-1/+1
| | | | | | | | Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
| * [openstack] custom user commands for cloud-initBogdan Dobrelya2018-02-091-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | 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>
* | Merge pull request #7001 from mbruzek/cidr_pool_start_endOpenShift Merge Robot2018-02-121-17/+5
|\ \ | |/ |/| | | | | | | | | | | | | | | | | Automatic merge from submit-queue. Removing prefix, replacing with cidr, pool_start and pool_end vars The heat template was hardcoded with a /24 cidr and that limited customers to 251 ip addresses in the OpenStack subnet. This allows the user to configure the cidr and the allocation pool start and end. Addresses issue #6829 that I created last week. @tomassedovic please take a look
| * Removing prefix and replacing with cidr, pool_start and pool_end variables.Matt Bruzek2018-02-021-17/+5
| |
* | Parameterize user and disable_root options in cloud configNaga Ravi Chaitanya Elluri2018-02-011-2/+2
|/ | | | | This commit will allow the user to login as root. By default, the user is set to openshift and disable_root is set to true.
* Merge pull request #6831 from jmencak/heatstack-infra-1936OpenShift Merge Robot2018-01-311-0/+4
|\ | | | | | | | | | | | | Automatic merge from submit-queue. Fix: e2e tests failing due to :1936/metrics unaccessible. This PR allows access to tcp/1936 ingress infra-secgrp policy, so that e2e test do not fail looking for router metrics (:1936/metrics).
| * Fix: e2e tests failing due to :1936/metrics unaccessible.Jiri Mencak2018-01-231-0/+4
| | | | | | | | | | | | This PR allows access to tcp/1936 ingress infra-secgrp policy, so that e2e test do not fail looking for router metrics port :1936/metrics
* | fix hostvars parameter nameTzu-Mainn Chen2018-01-292-4/+4
| |
* | remove mountpoint parameterTzu-Mainn Chen2018-01-291-1/+0
| |
* | add cinder mountpoint to inventoryTzu-Mainn Chen2018-01-273-0/+10
|/
* Merge pull request #6525 from luis5tb/fix-provider-networkMichael Gugino2018-01-222-9/+17
|\ | | | | Fix provider network support at openstack playbook
| * Fix provider network support at openstack playbookLuis Tomas Bolivar2018-01-082-9/+17
| | | | | | | | | | It ensures no floating ips are attached if a provider network is used
* | Allow using server names in openstack dynamic invTomas Sedovic2018-01-101-0/+3
| | | | | | | | | | | | | | | | 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.
* | OpenStack provisioning -- support cns.Jiri Mencak2018-01-021-0/+95
|/
* Fix and cleanup not required dns bitsBogdan Dobrelya2017-12-051-105/+0
| | | | | | | | | | | | | | | | | * 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
* Cleanup unused openstack provider codeBogdan Dobrelya2017-12-041-24/+7
| | | | | | | Remove references for bastion, ssh UI tunnek and static inventory. Update docs. Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
* dist.iteritems() no longer exists in Python 3.Jan Pazdziora2017-11-271-2/+2
|
* Namespace the OpenStack varsTomas Sedovic2017-11-074-185/+185
| | | | | 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-072-102/+102
| | | | | Most of the vars in `roles/openshift_openstack/defaults/main.yml` are now prefixed with `openstack_`.
* Add openshift_openstack role and move tasks thereTomas Sedovic2017-11-075-0/+1182
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.