From a1b0dc306662befdf22f19374cbb3126681c9f14 Mon Sep 17 00:00:00 2001 From: "Mytnyk, Volodymyr" Date: Fri, 11 May 2018 17:36:20 +0100 Subject: Add ansible scripts to deploy Kubernetes For know, only one node is supported. - build/configure CNI drivers - Init Kubernetes Change-Id: I1a0eb44fcbba20870a6b7611d4ffaf0bc3be92f3 Signed-off-by: Mytnyk, Volodymyr --- ansible/roles/set_package_installer_proxy/templates/apt_conf.j2 | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ansible/roles/set_package_installer_proxy') diff --git a/ansible/roles/set_package_installer_proxy/templates/apt_conf.j2 b/ansible/roles/set_package_installer_proxy/templates/apt_conf.j2 index 5b57178a7..cba8eacd4 100644 --- a/ansible/roles/set_package_installer_proxy/templates/apt_conf.j2 +++ b/ansible/roles/set_package_installer_proxy/templates/apt_conf.j2 @@ -1,3 +1,6 @@ {% if "http_proxy" in proxy_env %} Acquire::http::Proxy "{{ proxy_env.http_proxy }}"; {% endif %} +{% if "https_proxy" in proxy_env %} +Acquire::https::Proxy "{{ proxy_env.https_proxy }}"; +{% endif %} -- cgit 1.2.3-korg