From 89d1563e5fa839c4177f9ebeb9afd616a405a83f Mon Sep 17 00:00:00 2001 From: Artem Panchenko Date: Thu, 10 Nov 2016 17:02:41 +0200 Subject: [PATCH] Add a possiblity to set 'calicoctl_image_tag' Make it possible to define 'calicoctl_image_tag' value from tests by exporting CALICOCTL_IMAGE_TAG variable. Change-Id: I499b5288b39f504352f9c25a4cdef35b9c8522cc --- fuel_ccp_tests/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fuel_ccp_tests/settings.py b/fuel_ccp_tests/settings.py index 8a8d490..9da886c 100644 --- a/fuel_ccp_tests/settings.py +++ b/fuel_ccp_tests/settings.py @@ -101,6 +101,7 @@ CALICO = { "calico_node_image_repo": os.environ.get('CALICO_NODE_IMAGE_REPO'), "calico_node_image_tag": os.environ.get('CALICO_NODE_IMAGE_TAG'), "calicoctl_image_repo": os.environ.get('CALICOCTL_IMAGE_REPO'), + "calicoctl_image_tag": os.environ.get('CALICOCTL_IMAGE_TAG'), "calico_version": os.environ.get('CALICO_VERSION'), "calico_cni_download_url": os.environ.get('CALICO_CNI_DOWNLOAD_URL'), "calico_cni_checksum": os.environ.get('CALICO_CNI_CHECKSUM'),