Merge "baremetal: Add support for Docker http/https proxy setup"
This commit is contained in:
commit
93c4448365
@ -34,6 +34,10 @@ docker_storage_driver: ""
|
||||
docker_custom_option: ""
|
||||
docker_custom_config: {}
|
||||
|
||||
docker_http_proxy: ""
|
||||
docker_https_proxy: ""
|
||||
docker_no_proxy: ""
|
||||
|
||||
# Version of python used to execute Ansible modules.
|
||||
host_python_version: "{{ ansible_python.version.major }}.{{ ansible_python.version.minor }}"
|
||||
|
||||
|
@ -137,6 +137,9 @@
|
||||
when:
|
||||
- not docker_custom_option
|
||||
- not docker_configure_for_zun | bool
|
||||
- not docker_http_proxy
|
||||
- not docker_https_proxy
|
||||
- not docker_no_proxy
|
||||
|
||||
- name: Ensure docker service directory exists
|
||||
become: True
|
||||
@ -144,14 +147,24 @@
|
||||
path: /etc/systemd/system/docker.service.d
|
||||
state: directory
|
||||
recurse: yes
|
||||
when: docker_custom_option | length > 0 or docker_configure_for_zun|bool
|
||||
when: >
|
||||
docker_custom_option | length > 0 or
|
||||
docker_configure_for_zun | bool or
|
||||
docker_http_proxy | length > 0 or
|
||||
docker_https_proxy | length > 0 or
|
||||
docker_no_proxy | length > 0
|
||||
|
||||
- name: Configure docker service
|
||||
become: True
|
||||
template:
|
||||
src: docker_systemd_service.j2
|
||||
dest: /etc/systemd/system/docker.service.d/kolla.conf
|
||||
when: docker_custom_option | length > 0 or docker_configure_for_zun|bool
|
||||
when: >
|
||||
docker_custom_option | length > 0 or
|
||||
docker_configure_for_zun | bool or
|
||||
docker_http_proxy | length > 0 or
|
||||
docker_https_proxy | length > 0 or
|
||||
docker_no_proxy | length > 0
|
||||
|
||||
- name: Reload docker service file
|
||||
become: True
|
||||
|
@ -1,4 +1,13 @@
|
||||
[Service]
|
||||
{% if docker_http_proxy | length > 0 %}
|
||||
Environment="HTTP_PROXY={{ docker_http_proxy }}"
|
||||
{% endif %}
|
||||
{% if docker_https_proxy | length > 0 %}
|
||||
Environment="HTTPS_PROXY={{ docker_https_proxy }}"
|
||||
{% endif %}
|
||||
{% if docker_no_proxy | length > 0 %}
|
||||
Environment="NO_PROXY={{ docker_no_proxy }}"
|
||||
{% endif %}
|
||||
ExecStart=
|
||||
# ExecStart commandline copied from 'docker-ce' package. Same on CentOS/Debian/Ubuntu systems.
|
||||
ExecStart=/usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock{% if docker_custom_option %} {{ docker_custom_option }}{% endif %}{% if docker_configure_for_zun|bool %} {{ docker_zun_options }}{% endif %}
|
||||
|
@ -178,6 +178,10 @@ maximum number of log files to retain per container. The
|
||||
``docker_log_max_size`` variable, which defaults to ``50m``, defines the
|
||||
maximum size of each rotated log file per container.
|
||||
|
||||
The ``docker_http_proxy``, ``docker_https_proxy`` and ``docker_no_proxy``
|
||||
variables can be used to configure Docker Engine to connect to the internet
|
||||
using http/https proxies.
|
||||
|
||||
Additional options for the Docker engine can be passed in
|
||||
``docker_custom_config`` variable. It will be stored in ``daemon.json`` config
|
||||
file. Example:
|
||||
|
@ -0,0 +1,4 @@
|
||||
---
|
||||
features:
|
||||
- |
|
||||
Add support for configuring Docker Engine http/https proxy.
|
Loading…
Reference in New Issue
Block a user