summaryrefslogtreecommitdiffstats
path: root/roles/openshift_hosted/README.md
Commit message (Collapse)AuthorAgeFilesLines
* Remove empty openshift_hosted_facts roleMichael Gugino2017-12-121-4/+3
| | | | This commit removes a now-empty role.
* Add support for external glusterfs as registry backendMangirdas2017-11-211-2/+20
|
* Allow cluster IP for docker-registry service to be setMichael Hanselmann2017-10-191-0/+1
| | | | | | | | For historical reasons a small set of programs in our environments rely on the cluster-internal Docker registry having the IP address "172.30.1.1". So far we always had to patch in that address manually. Adding a variable on the "openshift_hosted" role allows the IP address to be set correctly when a cluster is installed.
* Remove openshift-commonMichael Gugino2017-09-061-1/+0
| | | | | | | | | 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.
* GlusterFS: Allow swapping an existing registry's backend storageJose A. Rivera2017-05-041-0/+8
| | | | Signed-off-by: Jose A. Rivera <jarrpa@redhat.com>
* openshift_hosted: add openshift_hosted_registry_cert_expire_days parameter.Slava Semushin2017-03-291-0/+1
|
* Add openshift_hosted_router_nameAndrew Lau2016-09-221-0/+1
|
* Various hosted component improvementsAndrew Butcher2016-07-071-8/+12
| | | | | | | | | | | | | * [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/+55
* 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".