summaryrefslogtreecommitdiffstats
path: root/roles/openshift_hosted/meta/main.yml
Commit message (Collapse)AuthorAgeFilesLines
* Relocate filter plugins to lib_utilsMichael Gugino2017-12-181-1/+1
| | | | | | | | | | | | | | 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.
* Remove empty openshift_hosted_facts roleMichael Gugino2017-12-121-1/+1
| | | | This commit removes a now-empty role.
* Refactor openshift_hosted plays and roleMichael Gugino2017-09-251-1/+0
| | | | | | | | | | | | Currently, openshift_hosted role duplicates some logic across separate task chains. This commit cleans up the openshift_hosted role and converts it to be primarily used with include_role to give better logic to the playbooks that utilize this role. This commit also refactors the playbook that calls various openshift_hosted roles into individual playbooks. This allows more granularity for advanced users.
* First attempt at refactor of os_firewallKenny Woodson2017-08-081-5/+1
|
* Added Docker Registry Port 5000 to FirewalldVincent Schwarzer2017-05-181-0/+5
|
* Moving projects task within openshift_hostedRussell Teague2017-03-171-2/+0
|
* Refactor and remove openshift_serviceaccountRussell Teague2017-03-131-16/+0
|
* openshift_hosted: Update tasks to use oc_ modulesRussell Teague2017-02-241-0/+1
|
* Register cloudfront privkey when requiredSteve Milner2017-02-161-1/+1
|
* Replace service account secrets handling with oc_serviceaccount_secret moduleJan Chaloupka2017-02-101-0/+1
|
* Move role dependencies out of playbooks for openshift_master, openshift_node ↵Andrew Butcher2017-01-091-1/+20
| | | | and openshift_hosted.
* Move role dependencies to playbooks.Andrew Butcher2016-07-291-24/+1
|
* Various hosted component improvementsAndrew Butcher2016-07-071-2/+23
| | | | | | | | | | | | | * [openshift_projects] Add openshift_projects role * [openshift_hosted] hosted deployments use openshift_hosted_infra_selector if openshift_hosted_<component>_selector is not defined * [openshift_hosted] move openshift_projects, openshift_serviceaccounts and openshift_metrics to dependencies of openshift_hosted * [router] improve router deployment - add router option to force subdomain - add CA to router certificate options * [registry] move registry config into openshift_hosted role - additional registry fixes/tweaks - add s3 storage support for registry * [serviceaccount] fix up serviceaccount creation
* Add support for creating secure router.Andrew Butcher2016-04-111-0/+16
* Move openshift_router to openshift_hosted role which will eventually contain registry, metrics and logging. * Adds option for specifying an openshift_hosted_router_certificate cert and key pair. * Removes dependency on node label variables and retrieves the node list from the API s.t. this role can be applied to any cluster with existing nodes. I've added an openshift_hosted playbook that occurs after node install to account for this. * Infrastructure nodes are selected using openshift_hosted_router_selector which is based on deployment type by default; openshift-enterprise -> "region=infra" and online -> "type=infra".