Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix playbook names to support import via galaxy #10021

Merged
merged 1 commit into from
Apr 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitlab-ci/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ syntax-check:
- ansible-playbook --syntax-check cluster.yml
- ansible-playbook --syntax-check playbooks/cluster.yml
- ansible-playbook --syntax-check upgrade-cluster.yml
- ansible-playbook --syntax-check playbooks/upgrade-cluster.yml
- ansible-playbook --syntax-check playbooks/upgrade_cluster.yml
- ansible-playbook --syntax-check reset.yml
- ansible-playbook --syntax-check playbooks/reset.yml
- ansible-playbook --syntax-check extra_playbooks/upgrade-only-k8s.yml
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions recover-control-plane.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
- name: Recover control panel
ansible.builtin.import_playbook: playbooks/recover-control-panel.yml
- name: Recover control plane
ansible.builtin.import_playbook: playbooks/recover_control_plane.yml
2 changes: 1 addition & 1 deletion remove-node.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
- name: Remove node
ansible.builtin.import_playbook: playbooks/remove-node.yml
ansible.builtin.import_playbook: playbooks/remove_node.yml
2 changes: 1 addition & 1 deletion upgrade-cluster.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
- name: Upgrade cluster
ansible.builtin.import_playbook: playbooks/upgrade-cluster.yml
ansible.builtin.import_playbook: playbooks/upgrade_cluster.yml