summaryrefslogtreecommitdiff
path: root/roles/openshift_management
AgeCommit message (Collapse)Author
2018-01-29[1538960] Correct ability to overried openshift_management_app_templateRussell Teague
* Converted 'flavor' logic to be based on app template * Converted 'ext-db' logic to use var based on app template * Prepended role private vars with '__' for consistency Bug 1538960 https://bugzilla.redhat.com/show_bug.cgi?id=1538960
2018-01-24Update CF 4.6 Beta templates in openshift_management directorySatoe Imaishi
2018-01-05Migrate to import_role for static role inclusionScott Dodson
In Ansible 2.2, the include_role directive came into existence as a Tech Preview. It is still a Tech Preview through Ansible 2.4 (and in current devel branch), but with a noteable change. The default behavior switched from static: true to static: false because that functionality moved to the newly introduced import_role directive (in order to stay consistent with include* being dynamic in nature and `import* being static in nature). The dynamic include is considerably more memory intensive as it will dynamically create a role import for every host in the inventory list to be used. (Also worth noting, there is at the time of this writing an object allocation inefficiency in the dynamic include that can in certain situations amplify this effect considerably) This change is meant to mitigate the pressure on memory for the Ansible control host. We need to evaluate where it makes sense to dynamically include roles and revert back to dynamic inclusion if and where it makes sense to do so.
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-10Add missing dependencies on openshift_facts roleScott Dodson
All of these roles call the openshift_facts module but didn't include the role in their dependencies which can lead to errors in Ansible 2.4. Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1524102
2017-12-08Cleanup byo referencesRussell Teague
2017-12-06Include Deprecation: Convert to include_tasksRussell Teague
2017-12-04Allow number of retries in openshift_management to be configurableElad Alfassa
2017-11-27Correct usage of include_roleRussell Teague
Switch to import_role for some required roles.
2017-11-04Merge pull request #5991 from tbielawa/gate_cfmeOpenShift Merge Robot
Automatic merge from submit-queue. management: users must acknowledge use of beta software Adds a new role variable, openshift_management_install_beta. This variable defaults to false. The value of this variable is checked during the validation phase. * If true, the install will not continue. * If false, The user is presented with an informative message letting them know this is beta software and there is low/no support at this time. The installation will abort and instruct the user how to continue.
2017-11-03management: enterprise users must acknowledge use of beta softwareTim Bielawa
Adds a new role variable, openshift_management_install_beta. This variable defaults to false. The value of this variable is checked during the validation phase for enterprise deployment types. * If true, the install will not continue. * If false, The user is presented with an informative message letting them know this is beta software and there is low/no support at this time. The installation will abort and instruct the user how to continue.
2017-11-02CFME: Use cluster_hostname if cluster_public_hostname isn't availableTim Bielawa
The CFME 'automatically add provider' playbook would fail if openshift_master_cluster_public_hostname was not defined in the inventory. Now we use that value if it is available, and fallback to using the masters 'cluster_hostname' otherwise. * Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1506951
2017-11-01Don't use possibly undefined variables in error messagesTim Bielawa
In an error reporting task we were referencing a variable which may not have been defined. Even though NFS server detection was working correctly the undefined variable reference caused an AnsibleUndefinedVariable error. * Fixes CFME failing to deploy using external NFS storage https://bugzilla.redhat.com/show_bug.cgi?id=1504535
2017-10-20Fix lintTim Bielawa
2017-10-20Move add_many_container_providers.yml to playbooks/byo/openshift-management ↵Andrew Butcher
with a noop task include to load filter plugins.
2017-10-20Refactor adding multiple container providersTim Bielawa
2017-10-20Management Cleanup and Provider IntegrationTim Bielawa
* Add container provider integration * General cleanup * Poll until service fully starts * Add notes on multiple-provider additions
2017-10-06Rename openshift_cfme role to openshift_managementTim Bielawa