From c548d7be69a28976cc2723350be0fb818264cd85 Mon Sep 17 00:00:00 2001 From: Mathieu Velten Date: Wed, 11 Jan 2017 16:39:54 +0100 Subject: [PATCH] CI: Set storage driver to overlay Set storage driver to overlay to increase speed and reduce space of container storage in the CI. Change-Id: I0da10a44c1811f830abdba0fef7f5b1b203486cb --- magnum/tests/functional/k8s/test_k8s_python_client.py | 3 ++- magnum/tests/functional/k8s_ironic/test_k8s_python_client.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/magnum/tests/functional/k8s/test_k8s_python_client.py b/magnum/tests/functional/k8s/test_k8s_python_client.py index 7172a0dd1c..15ac6d969b 100644 --- a/magnum/tests/functional/k8s/test_k8s_python_client.py +++ b/magnum/tests/functional/k8s/test_k8s_python_client.py @@ -17,5 +17,6 @@ class TestKubernetesAPIs(base.BaseK8sTest): cluster_template_kwargs = { "tls_disabled": False, "network_driver": 'flannel', - "volume_driver": 'cinder' + "volume_driver": 'cinder', + "docker_storage_driver": 'overlay', } diff --git a/magnum/tests/functional/k8s_ironic/test_k8s_python_client.py b/magnum/tests/functional/k8s_ironic/test_k8s_python_client.py index e10e35f36b..e6047be82c 100644 --- a/magnum/tests/functional/k8s_ironic/test_k8s_python_client.py +++ b/magnum/tests/functional/k8s_ironic/test_k8s_python_client.py @@ -21,4 +21,5 @@ class TestFedoraKubernetesIronicAPIs(base.BaseK8sTest): "volume_driver": None, "fixed_subnet": 'private-subnet', "server_type": 'bm', + "docker_storage_driver": 'overlay', }