Add podman container module to ansible
Signed-off-by: Sagi Shnaidman <sshnaidm@redhat.com>
This commit is contained in:
parent
65b0e1425b
commit
f01468a9d9
4 changed files with 1682 additions and 0 deletions
1350
lib/ansible/modules/cloud/podman/podman_container.py
Normal file
1350
lib/ansible/modules/cloud/podman/podman_container.py
Normal file
File diff suppressed because it is too large
Load diff
4
test/integration/targets/podman_container/aliases
Normal file
4
test/integration/targets/podman_container/aliases
Normal file
|
@ -0,0 +1,4 @@
|
|||
shippable/posix/group2
|
||||
skip/osx
|
||||
skip/freebsd
|
||||
destructive
|
2
test/integration/targets/podman_container/meta/main.yml
Normal file
2
test/integration/targets/podman_container/meta/main.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
dependencies:
|
||||
- setup_podman
|
326
test/integration/targets/podman_container/tasks/main.yml
Normal file
326
test/integration/targets/podman_container/tasks/main.yml
Normal file
|
@ -0,0 +1,326 @@
|
|||
- name: Test podman_image
|
||||
when:
|
||||
- ansible_facts.virtualization_type != 'docker'
|
||||
- ansible_facts.distribution in ['RedHat', 'Fedora']
|
||||
block:
|
||||
- name: Test no image with default action
|
||||
podman_container:
|
||||
name: container
|
||||
ignore_errors: true
|
||||
register: no_image
|
||||
|
||||
- name: Test no image with state 'started'
|
||||
podman_container:
|
||||
name: container
|
||||
state: started
|
||||
ignore_errors: true
|
||||
register: no_image1
|
||||
|
||||
- name: Test no image with state 'present'
|
||||
podman_container:
|
||||
name: container
|
||||
state: present
|
||||
ignore_errors: true
|
||||
register: no_image2
|
||||
|
||||
- name: Check no image
|
||||
assert:
|
||||
that:
|
||||
- no_image is failed
|
||||
- no_image1 is failed
|
||||
- no_image2 is failed
|
||||
- no_image.msg == "State 'started' required image to be configured!"
|
||||
- no_image1.msg == "State 'started' required image to be configured!"
|
||||
- no_image2.msg == "State 'present' required image to be configured!"
|
||||
fail_msg: No image test failed!
|
||||
success_msg: No image test passed!
|
||||
|
||||
- name: Ensure image doesn't exist
|
||||
podman_image:
|
||||
name: alpine:3.7
|
||||
state: absent
|
||||
|
||||
- name: Check pulling image
|
||||
podman_container:
|
||||
name: container
|
||||
image: alpine:3.7
|
||||
state: present
|
||||
command: sleep 1d
|
||||
register: image
|
||||
|
||||
- name: Check using already pulled image
|
||||
podman_container:
|
||||
name: container2
|
||||
image: alpine:3.7
|
||||
state: present
|
||||
command: sleep 1d
|
||||
register: image2
|
||||
|
||||
- name: Check output is correct
|
||||
assert:
|
||||
that:
|
||||
- image is changed
|
||||
- image.ansible_facts is defined
|
||||
- image.ansible_facts.podman_container is defined
|
||||
- image.ansible_facts.podman_container['State']['Running'] == true
|
||||
- image.container is defined
|
||||
- image.container['State']['Running'] == true
|
||||
- "'pulled image alpine:3.7' in image.actions"
|
||||
- "'started container' in image.actions"
|
||||
- image2 is changed
|
||||
- image2.ansible_facts is defined
|
||||
- image2.ansible_facts.podman_container is defined
|
||||
- image2.ansible_facts.podman_container['State']['Running'] == true
|
||||
- image2.container is defined
|
||||
- image2.container['State']['Running'] == true
|
||||
- "'pulled image alpine:3.7' not in image2.actions"
|
||||
- "'started container2' in image2.actions"
|
||||
fail_msg: Pulling image test failed!
|
||||
success_msg: Pulling image test passed!
|
||||
|
||||
- name: Check failed image pull
|
||||
podman_container:
|
||||
name: container
|
||||
image: ineverneverneverexist
|
||||
state: present
|
||||
command: sleep 1d
|
||||
register: imagefail
|
||||
ignore_errors: true
|
||||
|
||||
- name: Check output is correct
|
||||
assert:
|
||||
that:
|
||||
- imagefail is failed
|
||||
- imagefail.msg == "Can't pull image ineverneverneverexist"
|
||||
|
||||
|
||||
- name: Force container recreate
|
||||
podman_container:
|
||||
name: container
|
||||
image: alpine
|
||||
state: present
|
||||
command: sleep 1d
|
||||
recreate: true
|
||||
register: recreated
|
||||
|
||||
- name: Check output is correct
|
||||
assert:
|
||||
that:
|
||||
- recreated is changed
|
||||
- recreated.ansible_facts is defined
|
||||
- recreated.ansible_facts.podman_container is defined
|
||||
- recreated.ansible_facts.podman_container['State']['Running'] == true
|
||||
- "'recreated container' in recreated.actions"
|
||||
fail_msg: Force recreate test failed!
|
||||
success_msg: Force recreate test passed!
|
||||
|
||||
- name: Stop container
|
||||
podman_container:
|
||||
name: container
|
||||
state: stopped
|
||||
register: stopped
|
||||
|
||||
- name: Stop the same container again (idempotency)
|
||||
podman_container:
|
||||
name: container
|
||||
state: stopped
|
||||
register: stopped_again
|
||||
|
||||
- name: Check output is correct
|
||||
assert:
|
||||
that:
|
||||
- stopped is changed
|
||||
- stopped.ansible_facts is defined
|
||||
- stopped.ansible_facts.podman_container is defined
|
||||
- stopped.ansible_facts.podman_container['State']['Running'] == false
|
||||
- "'stopped container' in stopped.actions"
|
||||
- stopped_again is not changed
|
||||
- stopped_again.ansible_facts is defined
|
||||
- stopped_again.ansible_facts.podman_container is defined
|
||||
- stopped_again.ansible_facts.podman_container['State']['Running'] == false
|
||||
- stopped_again.actions == []
|
||||
fail_msg: Stopping container test failed!
|
||||
success_msg: Stopping container test passed!
|
||||
|
||||
- name: Delete stopped container
|
||||
podman_container:
|
||||
name: container
|
||||
state: absent
|
||||
register: deleted
|
||||
|
||||
- name: Delete again container (idempotency)
|
||||
podman_container:
|
||||
name: container
|
||||
state: absent
|
||||
register: deleted_again
|
||||
|
||||
- name: Check output is correct
|
||||
assert:
|
||||
that:
|
||||
- deleted is changed
|
||||
- deleted.ansible_facts is defined
|
||||
- deleted.ansible_facts.podman_container is defined
|
||||
- deleted.ansible_facts.podman_container == {}
|
||||
- "'deleted container' in deleted.actions"
|
||||
- deleted_again is not changed
|
||||
- deleted_again.ansible_facts is defined
|
||||
- deleted_again.ansible_facts.podman_container is defined
|
||||
- deleted_again.ansible_facts.podman_container == {}
|
||||
- deleted_again.actions == []
|
||||
fail_msg: Deleting stopped container test failed!
|
||||
success_msg: Deleting stopped container test passed!
|
||||
|
||||
- name: Create container, but don't run
|
||||
podman_container:
|
||||
name: container
|
||||
image: alpine:3.7
|
||||
state: stopped
|
||||
command: sleep 1d
|
||||
register: created
|
||||
|
||||
- name: Check output is correct
|
||||
assert:
|
||||
that:
|
||||
- created is changed
|
||||
- created.ansible_facts is defined
|
||||
- created.ansible_facts.podman_container is defined
|
||||
- created.ansible_facts.podman_container != {}
|
||||
- created.ansible_facts.podman_container['State']['Running'] == false
|
||||
- "'created container' in created.actions"
|
||||
fail_msg: "Creating stopped container test failed!"
|
||||
success_msg: "Creating stopped container test passed!"
|
||||
|
||||
- name: Delete created container
|
||||
podman_container:
|
||||
name: container
|
||||
state: absent
|
||||
|
||||
- name: Start container that was deleted
|
||||
podman_container:
|
||||
name: container
|
||||
image: alpine:3.7
|
||||
state: started
|
||||
command: sleep 1d
|
||||
register: started
|
||||
|
||||
- name: Check output is correct
|
||||
assert:
|
||||
that:
|
||||
- started is changed
|
||||
- started.ansible_facts is defined
|
||||
- started.ansible_facts.podman_container is defined
|
||||
- started.ansible_facts.podman_container['State']['Running'] == true
|
||||
- started.container is defined
|
||||
- started.container['State']['Running'] == true
|
||||
- "'pulled image alpine:3.7' not in started.actions"
|
||||
|
||||
- name: Delete started container
|
||||
podman_container:
|
||||
name: container
|
||||
state: absent
|
||||
register: deleted
|
||||
|
||||
- name: Delete again container (idempotency)
|
||||
podman_container:
|
||||
name: container
|
||||
state: absent
|
||||
register: deleted_again
|
||||
|
||||
- name: Check output is correct
|
||||
assert:
|
||||
that:
|
||||
- deleted is changed
|
||||
- deleted.ansible_facts is defined
|
||||
- deleted.ansible_facts.podman_container is defined
|
||||
- deleted.ansible_facts.podman_container == {}
|
||||
- "'deleted container' in deleted.actions"
|
||||
- deleted_again is not changed
|
||||
- deleted_again.ansible_facts is defined
|
||||
- deleted_again.ansible_facts.podman_container is defined
|
||||
- deleted_again.ansible_facts.podman_container == {}
|
||||
- deleted_again.actions == []
|
||||
fail_msg: Deleting started container test failed!
|
||||
success_msg: Deleting started container test passed!
|
||||
|
||||
- name: Recreate container with parameters
|
||||
podman_container:
|
||||
name: container
|
||||
image: alpine:3.7
|
||||
state: started
|
||||
command: sleep 1d
|
||||
recreate: true
|
||||
etc_hosts:
|
||||
host1: 127.0.0.1
|
||||
host2: 127.0.0.1
|
||||
annotation:
|
||||
this: "annotation_value"
|
||||
dns:
|
||||
- 1.1.1.1
|
||||
- 8.8.4.4
|
||||
dns_search: example.com
|
||||
cap_add:
|
||||
- SYS_TIME
|
||||
- NET_ADMIN
|
||||
publish:
|
||||
- "9000:80"
|
||||
- "9001:8000"
|
||||
workdir: "/bin"
|
||||
env:
|
||||
FOO: bar
|
||||
BAR: foo
|
||||
TEST: 1
|
||||
BOOL: false
|
||||
group_add: "somegroup"
|
||||
label:
|
||||
somelabel: labelvalue
|
||||
otheralbe: othervalue
|
||||
volumes:
|
||||
- /tmp:/data
|
||||
register: test
|
||||
|
||||
- name: Check output is correct
|
||||
assert:
|
||||
that:
|
||||
- test is changed
|
||||
- test.ansible_facts is defined
|
||||
- test.ansible_facts.podman_container is defined
|
||||
- test.ansible_facts.podman_container != {}
|
||||
- test.ansible_facts.podman_container['State']['Running'] == true
|
||||
# test capabilities
|
||||
- "'CAP_SYS_TIME' in test.ansible_facts.podman_container['BoundingCaps']"
|
||||
- "'CAP_NET_ADMIN' in test.ansible_facts.podman_container['BoundingCaps']"
|
||||
# test annotations
|
||||
- test.ansible_facts.podman_container['Config']['Annotations']['this'] is defined
|
||||
- test.ansible_facts.podman_container['Config']['Annotations']['this'] == "annotation_value"
|
||||
# test DNS
|
||||
- test.ansible_facts.podman_container['HostConfig']['DNS'] is defined
|
||||
- test.ansible_facts.podman_container['HostConfig']['DNS'] == ['1.1.1.1', '8.8.4.4']
|
||||
# test ports
|
||||
- test.ansible_facts.podman_container['NetworkSettings']['Ports']|length == 2
|
||||
# test working dir
|
||||
- test.ansible_facts.podman_container['Config']['WorkingDir'] == "/bin"
|
||||
# test dns search
|
||||
- test.ansible_facts.podman_container['HostConfig']['DNSSearch'] == ['example.com']
|
||||
# test environment variables
|
||||
- "'FOO=bar' in test.ansible_facts.podman_container['Config']['Env']"
|
||||
- "'BAR=foo' in test.ansible_facts.podman_container['Config']['Env']"
|
||||
- "'TEST=1' in test.ansible_facts.podman_container['Config']['Env']"
|
||||
- "'BOOL=False' in test.ansible_facts.podman_container['Config']['Env']"
|
||||
# test labels
|
||||
- test.ansible_facts.podman_container['Config']['Labels'] | length == 2
|
||||
- test.ansible_facts.podman_container['Config']['Labels']['somelabel'] == "labelvalue"
|
||||
- test.ansible_facts.podman_container['Config']['Labels']['otheralbe'] == "othervalue"
|
||||
# test mounts, in some of podman versions "source" and "destination" could be with different case
|
||||
# that's totally bizarre, but that's what it is
|
||||
- >-
|
||||
test.ansible_facts.podman_container['Mounts'][0]['destination'] is defined and
|
||||
'/data' in test.ansible_facts.podman_container['Mounts'] | map(attribute='destination') | list or
|
||||
test.ansible_facts.podman_container['Mounts'][0]['Destination'] is defined and
|
||||
'/data' in test.ansible_facts.podman_container['Mounts'] | map(attribute='Destination') | list
|
||||
- >-
|
||||
test.ansible_facts.podman_container['Mounts'][0]['source'] is defined and
|
||||
'/tmp' in test.ansible_facts.podman_container['Mounts'] | map(attribute='source') | list or
|
||||
test.ansible_facts.podman_container['Mounts'][0]['Source'] is defined and
|
||||
'/tmp' in test.ansible_facts.podman_container['Mounts'] | map(attribute='Source') | list
|
||||
fail_msg: Parameters container test failed!
|
||||
success_msg: Parameters container test passed!
|
Loading…
Reference in a new issue