-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from cradle8810/78_ansible-run-for-rui
Rui関連のファイルが変更されたら、ansible-playbookを実行してDNS設定を変更する
- Loading branch information
Showing
7 changed files
with
112 additions
and
130 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
--- | ||
name: Hayaworld Ansible Jobs | ||
on: | ||
push: | ||
branches: | ||
- '**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
Yamllint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run YAML Lint | ||
run: yamllint --strict --format github . | ||
|
||
AnsibleLint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run Ansible-lint | ||
uses: ansible/ansible-lint@main | ||
|
||
Duplicate_Check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Add exec flag to dupcheck.sh | ||
run: "chmod +x ./dupcheck.sh" | ||
|
||
- name: NXDOMAIN_Duplicate_Check | ||
run: > | ||
"./dupcheck.sh" | ||
"inventories/host_vars/rui/ads_hosts/NXDOMAIN.yml" | ||
Detect_File_Changed: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
rui: ${{ steps.changes.outputs.rui }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check What file were changed | ||
uses: dorny/paths-filter@v3 | ||
id: changes | ||
with: | ||
filters: | | ||
rui: | ||
- 'rui.yml' | ||
- 'tasks/rui/dnsmasq.yml' | ||
- 'inventories/host_vars/rui/**' | ||
Dry_Run_ansible: | ||
if: ${{ needs.Detect_File_Changed.outputs.rui == 'true' }} | ||
needs: | ||
- Yamllint | ||
- AnsibleLint | ||
- Duplicate_Check | ||
- Detect_File_Changed | ||
runs-on: self-hosted | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Prepare environments (ansible-galaxy) | ||
run: | | ||
ansible-galaxy install -r requirements.yml | ||
- name: "ansible-playbook -C --tags dnsmasq rui.yml" | ||
run: | | ||
ansible-playbook \ | ||
-i inventories \ | ||
-C \ | ||
--tags dnsmasq \ | ||
--ssh-extra-args='-o StrictHostKeyChecking=no' \ | ||
--extra-vars "ansible_sudo_pass=${{ secrets.SUDO }}" \ | ||
rui.yml | ||
Run_ansible: | ||
# if file for rui changed and master branch | ||
if: "${{ needs.Detect_File_Changed.outputs.rui == 'true' && github.ref == 'refs/heads/master'}}" | ||
needs: | ||
- Dry_Run_ansible | ||
runs-on: self-hosted | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Prepare environments (ansible-galaxy) | ||
run: | | ||
ansible-galaxy install -r requirements.yml | ||
- name: "ansible-playbook --tags dnsmasq rui.yml" | ||
run: | | ||
ansible-playbook \ | ||
-i inventories \ | ||
--tags dnsmasq \ | ||
--ssh-extra-args='-o StrictHostKeyChecking=no' \ | ||
--extra-vars "ansible_sudo_pass=${{ secrets.SUDO }}" \ | ||
rui.yml |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
a: | ||
- a.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters