diff options
author | 2018-05-11 17:36:20 +0100 | |
---|---|---|
committer | 2019-04-10 08:00:49 +0000 | |
commit | c66efd482c9c4aabf8a82d1f554ef5fca91b3bcb (patch) | |
tree | 1fee12c9e1e935b1720d338f7f8e744a814997c7 /ansible/roles/set_package_installer_proxy | |
parent | a2d14aea3e8a02e7f4ec0ef41f36aca6100d85e5 (diff) |
Add ansible scripts to deploy Kubernetes
For know, only one node is supported.
- build/configure CNI drivers
- Init Kubernetes
Change-Id: I6dd9dff7a4c7dfe2d7148812d2656966115c5ce9
Signed-off-by: Mytnyk, Volodymyr <volodymyrx.mytnyk@intel.com>
Diffstat (limited to 'ansible/roles/set_package_installer_proxy')
-rw-r--r-- | ansible/roles/set_package_installer_proxy/templates/apt_conf.j2 | 3 |
1 files changed, 3 insertions, 0 deletions
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 %} |