Skip to content

Commit 35661ec

Browse files
authored
Merge pull request #2 from mila-iqia/Fix/lint
Fix Lint
2 parents 20ad34c + 9a61bec commit 35661ec

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

meta/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ galaxy_info:
77
author: hadret
88
description: Wrapper role on top of docker_container, docker_network and docker_login.
99
license: MIT
10-
min_ansible_version: 2.7
10+
min_ansible_version: '2.7'
1111
platforms:
1212
- name: Debian
1313
versions:

molecule/default/converge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
hosts: all
44
become: true
55
roles:
6-
- role: hadret.containers
6+
- role: mila.containers

tasks/containers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
- name: deploy the container(s)
2+
- name: Deploy the container(s)
33
docker_container:
44
name: "{{ item.name }}"
55
api_version: '{{ item.api_version | default("auto") }}'

tasks/main.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
---
2-
- include_tasks: registries.yml
2+
- name: Login to registries
3+
ansible.builtin.include_tasks: registries.yml
34
when: registries | length > 0
45

5-
- include_tasks: networks.yml
6+
- name: Configure networks
7+
ansible.builtin.include_tasks: networks.yml
68
when: networks | length > 0
79

8-
- include_tasks: containers.yml
10+
- name: Configure containers
11+
ansible.builtin.include_tasks: containers.yml
912
when: containers | length > 0

tasks/networks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
- name: setup the network(s)
2+
- name: Setup the network(s)
33
docker_network:
44
name: '{{ item.name }}'
55
api_version: '{{ item.api_version | default("auto") }}'

tasks/registries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
- name: log into private registry
2+
- name: Log into private registry
33
docker_login:
44
username: '{{ item.username }}'
55
password: '{{ item.password }}'

0 commit comments

Comments
 (0)