Normalize bools in tests. (#589)

This commit is contained in:
Felix Fontein
2023-02-15 22:29:41 +01:00
committed by GitHub
parent a426232523
commit dd19db8c8f
82 changed files with 1620 additions and 1620 deletions
@@ -68,7 +68,7 @@
- name: Get info on Docker host and list containers
docker_host_info:
containers: yes
containers: true
register: output
- name: assert reading docker host facts when docker is running and list containers
@@ -84,7 +84,7 @@
- name: Get info on Docker host and list containers matching filters (single label)
docker_host_info:
containers: yes
containers: true
containers_filters:
label: key1=value1
register: output
@@ -95,7 +95,7 @@
- name: Get info on Docker host and list containers matching filters (multiple labels)
docker_host_info:
containers: yes
containers: true
containers_filters:
label:
- key1=value1
@@ -108,7 +108,7 @@
- name: Get info on Docker host and do not list containers which do not match filters
docker_host_info:
containers: yes
containers: true
containers_filters:
label:
- key1=value1
@@ -144,8 +144,8 @@
- name: Get info on Docker host and list containers with verbose output
docker_host_info:
containers: yes
verbose_output: yes
containers: true
verbose_output: true
register: output
- name: assert reading docker host facts when docker is running and list containers with verbose output
@@ -161,7 +161,7 @@
- name: Get info on Docker host and list images
docker_host_info:
images: yes
images: true
register: output
- name: assert reading docker host facts when docker is running and list images
@@ -177,8 +177,8 @@
- name: Get info on Docker host and list images with verbose output
docker_host_info:
images: yes
verbose_output: yes
images: true
verbose_output: true
register: output
- name: assert reading docker host facts when docker is running and list images with verbose output
@@ -194,7 +194,7 @@
- name: Get info on Docker host and list networks
docker_host_info:
networks: yes
networks: true
register: output
- name: assert reading docker host facts when docker is running and list networks
@@ -210,8 +210,8 @@
- name: Get info on Docker host and list networks with verbose output
docker_host_info:
networks: yes
verbose_output: yes
networks: true
verbose_output: true
register: output
- name: assert reading docker host facts when docker is running and list networks with verbose output
@@ -227,7 +227,7 @@
- name: Get info on Docker host and list volumes
docker_host_info:
volumes: yes
volumes: true
register: output
- name: assert reading docker host facts when docker is running and list volumes
@@ -243,8 +243,8 @@
- name: Get info on Docker host and list volumes with verbose output
docker_host_info:
volumes: yes
verbose_output: yes
volumes: true
verbose_output: true
register: output
- name: assert reading docker host facts when docker is running and list volumes with verbose output
@@ -260,7 +260,7 @@
- name: Get info on Docker host and get disk usage
docker_host_info:
disk_usage: yes
disk_usage: true
register: output
- name: assert reading docker host facts when docker is running and get disk usage
@@ -278,8 +278,8 @@
- name: Get info on Docker host and get disk usage with verbose output
docker_host_info:
disk_usage: yes
verbose_output: yes
disk_usage: true
verbose_output: true
register: output
- name: assert reading docker host facts when docker is running and get disk usage with verbose output
@@ -297,11 +297,11 @@
- name: Get info on Docker host, disk usage and get all lists together
docker_host_info:
volumes: yes
containers: yes
networks: yes
images: yes
disk_usage: yes
volumes: true
containers: true
networks: true
images: true
disk_usage: true
register: output
- name: assert reading docker host facts when docker is running, disk usage and get lists together
@@ -323,12 +323,12 @@
- name: Get info on Docker host, disk usage and get all lists together with verbose output
docker_host_info:
volumes: yes
containers: yes
networks: yes
images: yes
disk_usage: yes
verbose_output: yes
volumes: true
containers: true
networks: true
images: true
disk_usage: true
verbose_output: true
register: output
- name: assert reading docker host facts when docker is running and get disk usage with verbose output
@@ -353,7 +353,7 @@
docker_container:
name: "{{ item }}"
state: absent
force_kill: yes
force_kill: true
loop:
- "{{ cname }}"
- "{{ cname2 }}"