Skip to content

Commit dac3e68

Browse files
committed
refactor(playbooks): move playbooks to their own folder
Signed-off-by: Aldo Lacuku <[email protected]>
1 parent 1c5ffde commit dac3e68

File tree

20 files changed

+7
-7
lines changed

20 files changed

+7
-7
lines changed

.github/workflows/ansible-lint.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,6 @@ jobs:
1515

1616
- name: Run ansible-lint
1717
# replace `main` with any valid ref, or tags like `v6`
18-
uses: ansible/[email protected] # the latest version has a bug that do not run in online mode
18+
uses: ansible/[email protected] # the latest version has a bug that does not run in online mode
19+
with:
20+
path: "ansible-playbooks/"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ You need to provide the path to the key pair (`ssh_key_path`) and the name of th
3737

3838
## Run tests
3939

40-
From the repository root you can run tests on all machines by typing:
40+
From the `ansible-playbooks` directory you can run tests on all machines by typing:
4141

4242
```bash
4343
ansible-playbook main-playbook --ask-become

.ansible-lint renamed to ansible-playbooks/.ansible-lint

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@ profile: production # min, basic, moderate,safety, shared, production
77
# and not relative to the CWD of execution. CLI arguments passed to the --exclude
88
# option are parsed relative to the CWD of execution.
99
exclude_paths:
10-
- .github/
1110
- .ansible-lint
1211
- requirements.yml
1312

14-
# Offline mode enables installation of requirements.yml and schema refreshing
13+
# Offline mode disables installation of requirements.yml and schema refreshing
1514
# needed by the community collection
16-
online: true
15+
offline: false
File renamed without changes.
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ machines:
3838
- {name: "ubuntu-6.3", kernel: "therealbobo/ubuntu-kernel:6.3-x86_64", rootfs: "therealbobo/ubuntu-image:6.3-x86_64", arch: "x86_64"}
3939
- {name: "amazonlinux2022-5.15", kernel: "therealbobo/amazonlinux2022-kernel:5.15-aarch64", rootfs: "therealbobo/amazonlinux2022-image:5.15-aarch64", arch: "aarch64"} # noqa: yaml[line-length]
4040
- {name: "amazonlinux2-5.4", kernel: "therealbobo/amazonlinux2-kernel:5.4-aarch64", rootfs: "therealbobo/amazonlinux2-image:5.4-aarch64", arch: "aarch64"}
41-
# - {name: "archlinux-4.14", kernel: "therealbobo/archlinux-kernel:4.14-aarch64", rootfs: "therealbobo/archlinux-image:4.14-aarch64", arch: "aarch64"}
4241
- {name: "fedora-6.2", kernel: "therealbobo/fedora-kernel:6.2-aarch64", rootfs: "therealbobo/fedora-image:6.2-aarch64", arch: "aarch64"}
4342
- {name: "oraclelinux-4.14", kernel: "therealbobo/oraclelinux-kernel:4.14-aarch64", rootfs: "therealbobo/oraclelinux-image:4.14-aarch64", arch: "aarch64"}
4443
- {name: "oraclelinux-5.15", kernel: "therealbobo/oraclelinux-kernel:5.15-aarch64", rootfs: "therealbobo/oraclelinux-image:5.15-aarch64", arch: "aarch64"}

0 commit comments

Comments
 (0)