summaryrefslogtreecommitdiffstats
path: root/roles/openshift_common/defaults
Commit message (Collapse)AuthorAgeFilesLines
* remove openshift_hostname_workaround var for openshift_common, rather rely ↵Jason DeTiberus2015-03-241-5/+0
| | | | on inventory/playbook variables for openshift_hostname
* node registration changesJason DeTiberus2015-03-241-1/+1
| | | | | | | | | | | | | | - Remove default value for openshift_hostname and make it required - Remove workarounds that are no longer needed - Remove resources parameter from openshift_register_node module - pre-create node certificates for each node before registering node - distribute created node certificates to each node - Move node registration logic to a new openshift_register_nodes role - This is because we now have to run the steps on a master as opposed to on the nodes like we were previously doing. - Rename openshift_register_node module to kubernetes_register_node, one more step to genericizing enough for upstreaming, however there are still plenty of openshift specific commands that still need to be genericized.
* Fix hostname handlingJason DeTiberus2015-03-181-2/+1
| | | | | - always set hostname if hostname does not match openshift_hostname - Use local IP instead of public IP as hostname for workaround
* Add openshift_hostname default variable to openshift_commonJason DeTiberus2015-03-021-0/+1
| | | | | - for use anywhere the hostname is used that would be dependent on the openshift_hostname_workaround setting.
* add openshift_hostname workaround varJason DeTiberus2015-03-021-0/+4
| | | | | - use openshift_bind_ip for hostname when openshift_hostname_workaround is true - defaults to true to maintain current behavior.
* create openshift_common roleJason DeTiberus2015-02-241-0/+3
- 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