diff options
author | 2018-05-11 17:36:20 +0100 | |
---|---|---|
committer | 2019-04-17 14:47:44 +0300 | |
commit | a1b0dc306662befdf22f19374cbb3126681c9f14 (patch) | |
tree | b24c919a5a970587e7f39c7952e3c8349531369a /ansible/roles/set_package_installer_proxy | |
parent | 441c147b14aae5ed6181d024b6f9ff370d9286c3 (diff) |
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 <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 %} |