added rpm caching for to docker repo (#3718)

This commit is contained in:
Johnny Halfmoon
2018-11-16 11:33:23 +01:00
committed by k8s-ci-robot
parent 5ba67c55a2
commit 618ab93b42
3 changed files with 6 additions and 1 deletions

View File

@@ -124,7 +124,6 @@
line: 'obsoletes=0'
when: ansible_distribution in ["CentOS","RedHat"] and not is_atomic
- name: ensure docker packages are installed
action: "{{ docker_package_info.pkg_mgr }}"
args:

View File

@@ -3,6 +3,7 @@ name=Docker-CE Repository
baseurl={{ docker_rh_repo_base_url }}
enabled=1
gpgcheck=1
keepcache={{ docker_rpm_keepcache | default('1') }}
gpgkey={{ docker_rh_repo_gpgkey }}
{% if http_proxy is defined %}proxy={{ http_proxy }}{% endif %}
@@ -11,5 +12,6 @@ name=Docker-Engine Repository
baseurl={{ dockerproject_rh_repo_base_url }}
enabled=1
gpgcheck=1
keepcache={{ docker_rpm_keepcache | default('1') }}
gpgkey={{ dockerproject_rh_repo_gpgkey }}
{% if http_proxy is defined %}proxy={{ http_proxy }}{% endif %}