summaryrefslogtreecommitdiffstats
path: root/playbooks/container-runtime
diff options
context:
space:
mode:
authorKenny Woodson <kwoodson@redhat.com>2017-12-19 11:02:28 -0500
committerKenny Woodson <kwoodson@redhat.com>2017-12-19 16:22:37 -0500
commit5c6af565bfae851b493c8b4670d56f69016de3bb (patch)
treee6804ce02706bbd945f34e66e54d2ed1c274c616 /playbooks/container-runtime
parent7ab8e67bfc62e16466e3fd211fded63f16583403 (diff)
downloadopenshift-5c6af565bfae851b493c8b4670d56f69016de3bb.tar.gz
openshift-5c6af565bfae851b493c8b4670d56f69016de3bb.tar.bz2
openshift-5c6af565bfae851b493c8b4670d56f69016de3bb.tar.xz
openshift-5c6af565bfae851b493c8b4670d56f69016de3bb.zip
Adding support for docker-storage-setup on overlay
Diffstat (limited to 'playbooks/container-runtime')
-rw-r--r--playbooks/container-runtime/private/setup_storage.yml16
-rw-r--r--playbooks/container-runtime/setup_storage.yml6
2 files changed, 22 insertions, 0 deletions
diff --git a/playbooks/container-runtime/private/setup_storage.yml b/playbooks/container-runtime/private/setup_storage.yml
new file mode 100644
index 000000000..97226d6b2
--- /dev/null
+++ b/playbooks/container-runtime/private/setup_storage.yml
@@ -0,0 +1,16 @@
+---
+- hosts: "{{ l_containerized_host_groups }}"
+ vars:
+ l_chg_temp: "{{ openshift_containerized_host_groups | default([]) }}"
+ l_containerized_host_groups: "{{ (['oo_nodes_to_config'] | union(l_chg_temp)) | join(':') }}"
+ # role: container_runtime is necessary here to bring role default variables
+ # into the play scope.
+ roles:
+ - role: container_runtime
+ tasks:
+ - include_role:
+ name: container_runtime
+ tasks_from: docker_storage_setup_overlay.yml
+ when:
+ - container_runtime_docker_storage_type|default('') == "overlay2"
+ - openshift_docker_is_node_or_master | bool
diff --git a/playbooks/container-runtime/setup_storage.yml b/playbooks/container-runtime/setup_storage.yml
new file mode 100644
index 000000000..98e876b2c
--- /dev/null
+++ b/playbooks/container-runtime/setup_storage.yml
@@ -0,0 +1,6 @@
+---
+- import_playbook: ../init/main.yml
+ vars:
+ skip_verison: True
+
+- import_playbook: private/setup_storage.yml