summaryrefslogtreecommitdiffstats
path: root/roles/openshift_hosted/tasks/registry.yml
Commit message (Collapse)AuthorAgeFilesLines
* Introduce openshift_hosted_registry_storage_class configuration variable to ↵Suren A. Chilingaryan2018-03-111-0/+1
| | | | enable dynamicly provisioned GlusterFS volume for hosted registry
* Revert "Revert "use non-deprecated REGISTRY_OPENSHIFT_SERVER_ADDR variable ↵Ben Parees2018-01-291-1/+1
| | | | to set the registry hostname""
* Revert "use non-deprecated REGISTRY_OPENSHIFT_SERVER_ADDR variable to set ↵Ben Parees2018-01-271-1/+1
| | | | the registry hostname"
* use non-deprecated REGISTRY_OPENSHIFT_SERVER_ADDR variable to set the ↵Ben Parees2018-01-231-1/+1
| | | | | | | | registry hostname bug 1537593 https://bugzilla.redhat.com/show_bug.cgi?id=1537593
* Move wait_for_pods to it's own play openshift_hostedMichael Gugino2017-12-211-23/+2
| | | | | | | | | | | | | Currently, both registry and router pods need to be polled for successful deployment. Somtimes this can take up to a minute. This commit attempts to deploy both pods before polling either. This should reduce the average wait time for polling pods by 50% as time spent polling the first will also allow the second pod to continue it's own deployment.
* Fix openshift hosted registry rolloutRussell Teague2017-12-111-1/+1
|
* Include Deprecation: Convert to include_tasksRussell Teague2017-12-061-8/+6
|
* Fix hosted varsMichael Gugino2017-12-051-15/+12
| | | | | | Remove hosted vars from openshift_facts. The current pattern is causing a bunch of undesired sideffects.
* Implement container runtime roleMichael Gugino2017-12-011-1/+1
|
* Add support for external glusterfs as registry backendMangirdas2017-11-211-1/+19
|
* 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.
* Refactor openshift_hosted plays and roleMichael Gugino2017-09-251-0/+142
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.