summaryrefslogtreecommitdiffstats
path: root/roles/openshift_docker_facts
Commit message (Collapse)AuthorAgeFilesLines
* Add global proxy configurationScott Dodson2016-04-221-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | Configures HTTP_PROXY, HTTPS_PROXY, NO_PROXY for master and docker services. Configugres BuildDefaults Admission controller for master to automatically insert proxy environment configuration into build environments. To use set at least these variables - openshift_http_proxy - openshift_https_proxy NO_PROXY entries will automatically be configured for hostnames of all openshift hosts. You may specify additional NO_PROXY hosts or patterns by setting `openshift_no_proxy` If you wish to disable automatic generation of NO_PROXY hosts you may set `openshift_generate_no_proxy_hosts` to False. If you wish to have different builddefaults proxy configuration than baseline proxy configuration set these variables - openshift_builddefaults_http_proxy - openshift_builddefaults_https_proxy - openshift_builddefaults_no_proxy - openshift_builddefaults_git_http_proxy - openshift_builddefaults_git_https_proxy
* Bug 1320829 - Handle OSE 3.0 installsBrenton Leanhardt2016-04-181-1/+1
|
* The openshift_docker role must set the version facts for containerized installsBrenton Leanhardt2016-04-142-1/+3
| | | | | | QE found that for fresh installs we were basing the docker version facts of the images that could be pulled prior to configuring /etc/sysconfig/docker. This is an edge case but something we need to fix.
* Containerized installs on RHEL were downgrading docker unnecessarilyBrenton Leanhardt2016-04-121-3/+17
|
* Docker 1.9 is actually cool starting in origin 1.1.4Scott Dodson2016-04-061-1/+1
|
* Downgrade to docker 1.8.2 if installing OSE < 3.2Scott Dodson2016-04-052-0/+18
|
* Bug 1317755 - Set insecure-registry for internal registry by defaultJason DeTiberus2016-03-171-5/+12
|
* Move common common facts to openshift_factsJason DeTiberus2016-03-151-3/+0
| | | | | | | - Prevents roles that need common facts from needing to require openshift_common, which pulls in the openshift binary. - Add dependency on openshift_facts to os_firewall, since it uses openshift.common facts
* Docker role refactorJason DeTiberus2016-03-142-0/+50
- refactors the docker role to push generic config into docker role and wrap openshift specific variables into an openshift_docker role and it's dependent openshift_docker_facts role - adds support for setting --confirm-def-push flag (Resolves https://github.com/openshift/openshift-ansible/issues/1014) - moves docker related facts from common/node roles to a new docker role - renames cli_docker_* role varialbes to openshift_docker-* (maintaining backward compatibility) - update role dependencies to pull in openshift_docker conditionally based on is_containerized - remove playbooks/common/openshift-docker since the docker role is now conditionally included