Skip to content

Commit f333fe7

Browse files
authored
Add podman system connection modules (#971)
Signed-off-by: Sagi Shnaidman <sshnaidm@redhat.com>
1 parent ee52d9d commit f333fe7

File tree

8 files changed

+1410
-0
lines changed

8 files changed

+1410
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Podman system connection
2+
3+
on:
4+
push:
5+
paths:
6+
- '.github/workflows/podman_system_connection.yml'
7+
- '.github/workflows/reusable-module-test.yml'
8+
- 'ci/*.yml'
9+
- 'ci/run_containers_tests.sh'
10+
- 'ci/playbooks/containers/podman_system_connection.yml'
11+
- 'plugins/modules/podman_system_connection.py'
12+
- 'tests/integration/targets/podman_system_connection/**'
13+
branches:
14+
- main
15+
pull_request:
16+
paths:
17+
- '.github/workflows/podman_system_connection.yml'
18+
- '.github/workflows/reusable-module-test.yml'
19+
- 'ci/*.yml'
20+
- 'ci/run_containers_tests.sh'
21+
- 'ci/playbooks/containers/podman_system_connection.yml'
22+
- 'plugins/modules/podman_system_connection.py'
23+
- 'tests/integration/targets/podman_system_connection/**'
24+
schedule:
25+
- cron: 4 0 * * * # Run daily at 0:03 UTC
26+
27+
jobs:
28+
test_podman_system_connection:
29+
uses: ./.github/workflows/reusable-module-test.yml
30+
with:
31+
module_name: 'podman_system_connection'
32+
display_name: 'Podman system connection'
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Podman system connection info
2+
3+
on:
4+
push:
5+
paths:
6+
- '.github/workflows/podman_system_connection_info.yml'
7+
- '.github/workflows/reusable-module-test.yml'
8+
- 'ci/*.yml'
9+
- 'ci/run_containers_tests.sh'
10+
- 'ci/playbooks/containers/podman_system_connection_info.yml'
11+
- 'plugins/modules/podman_system_connection_info.py'
12+
- 'tests/integration/targets/podman_system_connection_info/**'
13+
branches:
14+
- main
15+
pull_request:
16+
paths:
17+
- '.github/workflows/podman_system_connection_info.yml'
18+
- '.github/workflows/reusable-module-test.yml'
19+
- 'ci/*.yml'
20+
- 'ci/run_containers_tests.sh'
21+
- 'ci/playbooks/containers/podman_system_connection_info.yml'
22+
- 'plugins/modules/podman_system_connection_info.py'
23+
- 'tests/integration/targets/podman_system_connection_info/**'
24+
schedule:
25+
- cron: 4 0 * * * # Run daily at 0:03 UTC
26+
27+
jobs:
28+
test_podman_system_connection_info:
29+
uses: ./.github/workflows/reusable-module-test.yml
30+
with:
31+
module_name: 'podman_system_connection_info'
32+
display_name: 'Podman system connection info'
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
- hosts: all
3+
gather_facts: true
4+
tasks:
5+
- include_role:
6+
name: podman_system_connection
7+
vars:
8+
ansible_python_interpreter: "{{ _ansible_python_interpreter }}"
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
- hosts: all
3+
gather_facts: true
4+
tasks:
5+
- include_role:
6+
name: podman_system_connection_info
7+
vars:
8+
ansible_python_interpreter: "{{ _ansible_python_interpreter }}"

0 commit comments

Comments
 (0)