summaryrefslogtreecommitdiff
path: root/roles/container_runtime/defaults
AgeCommit message (Collapse)Author
2018-02-12Fix docker_upgrade variableMichael Gugino
Currently, docker_upgrade is ignored during cluster upgrades. This commit ensures that the variable is respected. Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1543714
2018-02-12additional mounts: specify 'type' in container_runtime_crio_additional_mountsVadim Rutkovsky
2018-02-07Adding ability to provide additional mounts to crio system container.Kenny Woodson
2018-01-27Merge pull request #6905 from mgugino-upstream-stage/fix-crt-typoOpenShift Merge Robot
Automatic merge from submit-queue. Fix container_runtime variable typo 'Centos' should be 'CentOS' as it corresponds to the ansible variable that determines the linux distro.
2018-01-26Fix container_runtime variable typoMichael Gugino
'Centos' should be 'CentOS' as it corresponds to the ansible variable that determines the linux distro.
2018-01-25Removing dependency on the extra stroage device.Kenny Woodson
2018-01-10docker: use image from CentOS and Fedora registriesGiuseppe Scrivano
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
2018-01-10crio: use Docker and CentOS registries for the imageGiuseppe Scrivano
2018-01-02Cast openshift_docker_use_system_container to boolMichael Gugino
openshift_docker_use_system_container might be passed in via ini inventory as 'openshift_docker_use_system_container=false' This condition will be interpreted as a string type, instead of boolean. Casting openshift_docker_use_system_container as bool will achieve the users desired intent. Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1528943
2017-12-20Move validate_hosts to prerequisites.ymlMichael Gugino
Move more checks outside of init/main.yml for speeding up upgrades and other operational plays that need to run.
2017-12-20Merge pull request #6524 from kwoodson/docker_storage_setup_overlayScott Dodson
Adding support for docker-storage-setup on overlay
2017-12-19Adding support for docker-storage-setup on overlayKenny Woodson
2017-12-18Relocate filter plugins to lib_utilsMichael Gugino
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.
2017-12-13docker: use Fedora /latest/ instead of hardcoding the versionGiuseppe Scrivano
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
2017-12-08container-engine: log-opts is a dictionary in the daemon.json fileGiuseppe Scrivano
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
2017-12-08crio: define and use l_is_node_system_containerGiuseppe Scrivano
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
2017-12-07Implement container_runtime playbooks and changesMichael Gugino
This commit refactors some duplicate code, removes usage of set_fact where not needed, and reorganizes container_runtime role to use include_role.
2017-12-01Implement container runtime roleMichael Gugino