
Ansible doens't really have a great built-in way to modify a json file (unlike ini files). The extant docker role does what seems to be the usual standard, which is slurp in the file, parse it and then write it back out. In a follow-on change (I338616c41a65b007d56648fdab6da2a6a6b909f4) we need to set some more values in the docker configuration .json file, which made me think it's generic enough that we can have a role to basically run read the file, |combine and write it back out. This adds such a role with various options, and converts the existing json configuration update in ensure-docker to use it. Change-Id: I155a409945e0175249cf2dc630b839c7a97fb452
29 lines
679 B
YAML
29 lines
679 B
YAML
---
|
|
|
|
- name: Ensure "docker" group exists
|
|
group:
|
|
name: "{{ docker_group }}"
|
|
state: present
|
|
|
|
- name: Add user to docker group
|
|
user:
|
|
name: "{{ ansible_user }}"
|
|
groups:
|
|
- "{{ docker_group }}"
|
|
append: yes
|
|
|
|
- name: Update docker daemon configuration
|
|
when: docker_userland_proxy is defined
|
|
block:
|
|
- name: Add proxy config
|
|
include_role:
|
|
name: update-json-file
|
|
vars:
|
|
update_json_file_name: /etc/docker/daemon.json
|
|
update_json_file_combine:
|
|
userland-proxy: "{{ docker_userland_proxy }}"
|
|
update_json_file_become: true
|
|
|
|
- name: Reset ssh connection to pick up docker group
|
|
meta: reset_connection
|