summaryrefslogtreecommitdiffstats
path: root/roles/docker/tasks/systemcontainer_docker.yml
Commit message (Collapse)AuthorAgeFilesLines
* Add regexp for container-engine lineinfileSteve Milner2017-05-161-0/+5
| | | | | This ensures that if the line already exists it will be updated with the expected results from the installer.
* use dest instead of path for lineinfileSteve Milner2017-05-151-6/+6
| | | | | | | Switching to dest instead of path for lineinfile. path is the name for ansible 2.3+ though dest will work for 2.2 and 2.3. Ref: http://docs.ansible.com/ansible/lineinfile_module.html
* Add NO_PROXY workaround for container-engine atomic commandSteve Milner2017-05-151-0/+4
| | | | Ref: https://bugzilla.redhat.com/show_bug.cgi?id=1450310
* Add no_proxy to atomic.confSteve Milner2017-05-151-1/+9
| | | | Requires: https://github.com/projectatomic/atomic/pull/999
* Add docker package for container-engine installSteve Milner2017-05-141-11/+15
| | | | | The package is required so that openshift_facts is able to use the docker client to gain information on the versions.
* Always add proxy items to atomic.confSteve Milner2017-05-121-4/+1
|
* Move container-engine systemd environment to updated locationSteve Milner2017-05-121-2/+2
|
* Ensure true is lowercase in daemon.jsonSteve Milner2017-05-101-0/+1
|
* Use local variables for daemon.json templateSteve Milner2017-05-081-0/+8
| | | | | | | | | | | Instead of using bare lists and dicts this change converts variables into json for use with daemon.json. jinja2 does have an ability to do this in side of templates, however it is only available in 2.9+. Until then the use of ansible's to_json in the playbook is being used. Refs: - http://jinja.pocoo.org/docs/2.9/templates/#tojson - http://docs.ansible.com/ansible/playbooks_filters.html#filters-for-formatting-data
* Fix 1448368, and some other minors issuesGan Huang2017-05-051-11/+11
|
* System container dockerSteve Milner2017-05-031-0/+135
This change allows for the use of either the traditional package install of docker OR a system container install of docker. Two new inventory options, openshift_docker_use_system_container and openshift_docker_systemcontainer_image_registry_override, have been added which are be used to install with a system container. By default this option is commented out. One new fact has been added: - docker.service_name: docker by default, container-engine-docker for system container