-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adding galaxy collection * reverting change * adding all files * adjusting for galaxy * adjusting for galaxy --------- Co-authored-by: Adam Leiner <[email protected]>
- Loading branch information
Showing
12 changed files
with
112 additions
and
28 deletions.
There are no files selected for viewing
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,2 @@ | ||
# CHANGELOG | ||
|
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,25 @@ | ||
--- | ||
namespace: rancherfederal | ||
name: rke2_ansible | ||
version: 0.0.2 | ||
Check failure on line 4 in galaxy.yml GitHub Actions / Lint for pushgalaxy[version-incorrect]
|
||
readme: README.md | ||
authors: | ||
- Rancher Government <[email protected]> | ||
description: Collection for rancherfederal/rke2-ansible | ||
|
||
license_file: 'LICENSE' | ||
|
||
tags: [infrastructure, linux, kubernetes, rancher, rke2] | ||
|
||
dependencies: | ||
ansible.utils: 4.1.0 | ||
|
||
repository: https://github.com/rancherfederal/rke2-ansible | ||
documentation: https://github.com/rancherfederal/rke2-ansible | ||
homepage: https://github.com/rancherfederal/rke2-ansible | ||
issues: https://github.com/rancherfederal/rke2-ansible/issues | ||
|
||
build_ignore: | ||
- tarball_install/* | ||
- testing | ||
- .github |
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,52 @@ | ||
--- | ||
# Collections must specify a minimum required ansible version to upload | ||
# to galaxy | ||
requires_ansible: '>=2.16.0' | ||
|
||
# Content that Ansible needs to load from another location or that has | ||
# been deprecated/removed | ||
# plugin_routing: | ||
# action: | ||
# redirected_plugin_name: | ||
# redirect: ns.col.new_location | ||
# deprecated_plugin_name: | ||
# deprecation: | ||
# removal_version: "4.0.0" | ||
# warning_text: | | ||
# See the porting guide on how to update your playbook to | ||
# use ns.col.another_plugin instead. | ||
# removed_plugin_name: | ||
# tombstone: | ||
# removal_version: "2.0.0" | ||
# warning_text: | | ||
# See the porting guide on how to update your playbook to | ||
# use ns.col.another_plugin instead. | ||
# become: | ||
# cache: | ||
# callback: | ||
# cliconf: | ||
# connection: | ||
# doc_fragments: | ||
# filter: | ||
# httpapi: | ||
# inventory: | ||
# lookup: | ||
# module_utils: | ||
# modules: | ||
# netconf: | ||
# shell: | ||
# strategy: | ||
# terminal: | ||
# test: | ||
# vars: | ||
|
||
# Python import statements that Ansible needs to load from another location | ||
# import_redirection: | ||
# ansible_collections.ns.col.plugins.module_utils.old_location: | ||
# redirect: ansible_collections.ns.col.plugins.module_utils.new_location | ||
|
||
# Groups of actions/modules that take a common set of options | ||
# action_groups: | ||
# group_name: | ||
# - module1 | ||
# - module2 |
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,23 @@ | ||
--- | ||
- name: Server play | ||
hosts: rke2_servers | ||
any_errors_fatal: true | ||
become: true | ||
roles: | ||
- role: rke2_server | ||
serial: 5 | ||
|
||
- name: Agent play | ||
hosts: rke2_agents | ||
any_errors_fatal: true | ||
become: true | ||
roles: | ||
- role: rke2_agent | ||
serial: 10 | ||
|
||
- name: Cluster manifest play | ||
hosts: rke2_servers | ||
any_errors_fatal: true | ||
become: true | ||
roles: | ||
- role: cluster_manifest |
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,6 @@ | ||
--- | ||
- name: Testing play | ||
hosts: all | ||
become: yes | ||
roles: | ||
- role: testing |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
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 |
---|---|---|
@@ -1,24 +1,3 @@ | ||
--- | ||
|
||
- name: Server play | ||
hosts: rke2_servers | ||
any_errors_fatal: true | ||
become: true | ||
roles: | ||
- role: rke2_server | ||
serial: 5 | ||
|
||
- name: Agent play | ||
hosts: rke2_agents | ||
any_errors_fatal: true | ||
become: true | ||
roles: | ||
- role: rke2_agent | ||
serial: 10 | ||
|
||
- name: Cluster manifest play | ||
hosts: rke2_servers | ||
any_errors_fatal: true | ||
become: true | ||
roles: | ||
- role: cluster_manifest | ||
- name: Playbook for rke2-ansible | ||
import_playbook: playbooks/site.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
--- | ||
- name: Testing play | ||
hosts: all | ||
become: yes | ||
roles: | ||
- role: testing | ||
- name: Playbook for testing | ||
import_playbook: playbooks/testing.yml |