summaryrefslogtreecommitdiffstats
path: root/roles/openshift_common/meta
Commit message (Collapse)AuthorAgeFilesLines
* Removing dependencies for openshift_repos and setting them up early in the ↵Kenny Woodson2017-08-141-1/+0
| | | | cluster build.
* Refactor of openshift_version.Kenny Woodson2017-08-081-1/+0
|
* Do not install rpm for version in openshift_version role.Devan Goodwin2016-06-061-1/+2
|
* Get rpm installations functional again.Devan Goodwin2016-05-261-1/+1
|
* Move os_firewall out of openshift_commonScott Dodson2016-05-111-1/+0
|
* Add AWS cloud provider support.Andrew Butcher2016-03-291-4/+3
|
* Add support for Openstack integrationSylvain Baubeau2016-03-141-0/+1
|
* openshift_facts role/module refactor default settingsJason DeTiberus2015-04-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add openshift_facts role and module - Created new role openshift_facts that contains an openshift_facts module - Refactor openshift_* roles to use openshift_facts instead of relying on defaults - Refactor playbooks to use openshift_facts - Cleanup inventory group_vars - Update defaults - update openshift_master role firewall defaults - remove etcd peer port, since we will not be supporting clustered embedded etcd - remove 8444 since console now runs on the api port by default - add 8444 and 7001 to disabled services to ensure removal if updating - Add new role os_env_extras_node that is a subset of the docker role - previously, we were starting/enabling docker which was causing issues with some installations - Does not install or start docker, since the openshift-node role will handle that for us - Only adds root to the dockerroot group - Update playbooks to use ops_env_extras_node role instead of docker role - os_firewall bug fixes - ignore ip6tables for now, since we are not configuring any ipv6 rules - if installing package do a daemon-reload before starting/enabling service - Add aws support to bin/cluster - Add list action to bin/cluster - Add update action to bin/cluster - cleanup some stray debug statements - some variable renaming for clarity
* Rename repos role to openshift_reposJason DeTiberus2015-03-181-0/+1
| | | | | | | | | - Rename repos role to openshift_repos - Make openshift_repos a dependency of openshift_common - Add README and metadata for openshift_repos - Playbook updates for role rename - Verify libselinux-python is installed, otherwise some of the bulit-in modules we use fail
* Fix license nameJason DeTiberus2015-03-061-1/+1
|
* refactor firewall management into new roleJason DeTiberus2015-03-051-1/+3
| | | | | | | | | | | | | | | | | - Add os_firewall role - Remove firewall settings from base_os, add wait task to os_firewall - Added a iptables firewall module for maintaining the following (in a mostly naive manner): - ensure the OPENSHIFT_ALLOW chain is defined - ensure that there is a jump rule in the INPUT chain for OPENSHIFT_ALLOW - adds or removes entries from the OPENSHIFT_ALLOW chain - issues '/usr/libexec/iptables/iptables.init save' when rules are changed - Limitations of iptables firewall module - only allows setting of ports/protocols to open - no testing on ipv6 support - made os_firewall a dependency of openshift_common - Hardcoded openshift_common to use iptables (through the vars directory) until upstream support is in place for firewalld
* create openshift_common roleJason DeTiberus2015-02-241-0/+13
- move common openshift logic into openshift_common - set openshift_common as a dependency for openshift_node and openshift_master - rename role variables to openshift_* to be more descriptive - start recording local_facts on the openshift hosts - clean up firewalld config to be a bit more dry - Update firewall ports for https, make sure http rules are removed - Replace references to ansible_eth0.ipv4.address with ansible_default_ipv4.address