summaryrefslogtreecommitdiff
path: root/roles/openshift_node/meta
AgeCommit message (Collapse)Author
2018-01-02Remove last of openshift_node role meta-dependsMichael Gugino
Remove last non-taskless meta-depends from openshift_node role. Remove variable 'openshift_node_upgrade_in_progress' as it is no longer used.
2017-12-18Relocate filter plugins to lib_utilsMichael Gugino
This commit relocates filter_plugings to lib_utils, changes the namespacing to prevent unintended use of older versions that may be present in filter_plugins/ directory on existing installs. Add lib_utils to meta depends for roles Also consolidate some plugins into lib_utils from various other areas. Update rpm spec, obsolete plugin rpms.
2017-12-18Remove openshift_node_facts roleMichael Gugino
This commit removes the remainder of openshift_node_facts role.
2017-12-01Implement container runtime roleMichael Gugino
2017-11-28Merge pull request #6269 from mgugino-upstream-stage/clock-dependsMichael Gugino
Remove openshift_clock from meta depends
2017-11-27Combine openshift_node and openshift_node_dnsmasqMichael Gugino
This commit combines these two roles. This will prevent openshift_node_facts from running twice.
2017-11-27Remove openshift_clock from meta dependsMichael Gugino
This commit adds openshift_clock role to required plays instead of using meta_depends.
2017-11-16Combine openshift_node and openshift_node_upgradeMichael Gugino
Currently, having openshift_node and openshift_node_upgrade as two distinct roles has created a duplication across handlers, templates, and some tasks. This commit combines the roles to reduce duplication and bugs encountered by not putting code in both places.
2017-10-02Separate certificate playbooks.Andrew Butcher
2017-09-06Remove openshift-commonMichael Gugino
Most of this role's purpose was to set facts. The vast majority of these facts were simply redefining user-supplied variables. This commit also removes various artifacts leftover from previous versions, as well as variables that seem to be entirely unused.
2017-08-29Merging openshift_node with openshift bootstrap.Kenny Woodson
2017-08-08First attempt at refactor of os_firewallKenny Woodson
2017-07-27Move node facts to new openshift_node_facts role.Andrew Butcher
2017-07-26Sync all openshift.common.use_openshift_sdn uses in yaml filesJan Chaloupka
Most occurrences are in a form: ```yaml openshift.common.use_openshift_sdn | default(true) | bool ``` Let's make all occurences this way given the use_openshift_sdn is set to true anyway. See https://github.com/openshift/openshift-ansible/blob/0c350dcc7d06d62be5ba3a8e468dff85cdd96dd7/roles/openshift_facts/library/openshift_facts.py#L2035
2017-05-15Added Calico BGP Port 179 to FirewalldVincent Schwarzer
2017-04-04Port 10255 unnecessary. Removing all instancesChris Callegari
2017-03-27Use meta/main.yml for role dependenciesRussell Teague
2017-01-20Reorder node dnsmasq dependency s.t. networkmanager is restarted after ↵Andrew Butcher
firewall changes have been applied.
2017-01-10Support openshift_node_port_range for configuring service NodePortsClayton Coleman
Sets the appropriate config field if openshift_node_port_range is set and also configures filewalls on each node. firewalld already supports port ranges like "30000-32000", while iptables needs that value converted to the correct "30000:32000" form for use with `--dport`. If not set, no node ports are opened.
2017-01-09Move role dependencies out of playbooks for openshift_master, openshift_node ↵Andrew Butcher
and openshift_hosted.
2016-07-29Move role dependencies to playbooks.Andrew Butcher
2016-07-20Refactor openshift certificates roles.Andrew Butcher
2016-06-01Move os_firewall_allow from defaults to role dependencies.Andrew Butcher
2016-05-30Revert openshift-certificates changes.Andrew Butcher
2016-05-26Merge pull request #1672 from jstuever/os_clocksJason DeTiberus
Add openshift_clock role
2016-05-20Enable openshift_clock role for openshift_master, openshift_node, and ↵Jeremiah Stuever
openshift_etcd
2016-05-19Consolidate ca/master/node certificates roles into openshift_certificates.Andrew Butcher
2016-05-11Move os_firewall out of openshift_commonScott Dodson
2016-04-19Add openshift_node_dnsmasqScott Dodson
2016-03-31Bug 1320829 - Ensure docker installed for factsJason DeTiberus
- gather facts requiring docker only if docker is present and running - Update reference to etcd role in playbooks/common/openshift-etcd/config.yml to use openshift_etcd
2016-03-29Add AWS cloud provider support.Andrew Butcher
2016-03-14Docker role refactorJason DeTiberus
- refactors the docker role to push generic config into docker role and wrap openshift specific variables into an openshift_docker role and it's dependent openshift_docker_facts role - adds support for setting --confirm-def-push flag (Resolves https://github.com/openshift/openshift-ansible/issues/1014) - moves docker related facts from common/node roles to a new docker role - renames cli_docker_* role varialbes to openshift_docker-* (maintaining backward compatibility) - update role dependencies to pull in openshift_docker conditionally based on is_containerized - remove playbooks/common/openshift-docker since the docker role is now conditionally included
2015-12-15fixesJason DeTiberus
2015-11-05Various HA changes for pacemaker and native methods.Andrew Butcher
2015-03-06Fix license nameJason DeTiberus
2015-02-24create openshift_common roleJason DeTiberus
- 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
2015-02-16- Rename minion to nodeJhon Honce
- Update playbooks to support latest code