mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-14 22:04:43 +03:00
updated names and removed checks for rhel, as we already know we have systemd inside that play
This commit is contained in:
@@ -1,21 +1,17 @@
|
|||||||
---
|
---
|
||||||
- name: create docker service directory for RHEL family
|
- name: create docker service directory for systemd
|
||||||
file: path=/etc/systemd/system/docker.service.d state=directory
|
file: path=/etc/systemd/system/docker.service.d state=directory
|
||||||
when: ansible_distribution in ["CentOS","RedHat"] and
|
|
||||||
ansible_distribution_major_version >= 7
|
|
||||||
|
|
||||||
- name: drop docker environment for RHEL family
|
- name: drop docker environment conf to enable proxy usage
|
||||||
template:
|
template:
|
||||||
src: http-proxy.conf.j2
|
src: http-proxy.conf.j2
|
||||||
dest: /etc/systemd/system/docker.service.d/http-proxy.conf
|
dest: /etc/systemd/system/docker.service.d/http-proxy.conf
|
||||||
when: ansible_distribution in ["CentOS","RedHat"] and
|
register: systemddockerproxy
|
||||||
ansible_distribution_major_version >= 7
|
|
||||||
register: rheldockerproxy
|
|
||||||
|
|
||||||
- name: reload systemctl daemons for RHEL family
|
- name: reload systemctl daemons
|
||||||
shell: systemctl daemon-reload
|
shell: systemctl daemon-reload
|
||||||
when: rheldockerproxy.changed
|
when: systemddockerproxy.changed
|
||||||
|
|
||||||
- name: restart docker for RHEL family
|
- name: restart docker so configs are applies
|
||||||
service: name=docker state=restarted
|
service: name=docker state=restarted
|
||||||
when: rheldockerproxy.changed
|
when: systemddockerproxy.changed
|
||||||
|
|||||||
Reference in New Issue
Block a user