Ansible Collection for management and automation of microshift to build rpm-ostree based images to run microshift, configure microshift, upgrade microshift, deploy kubernetes workloads on microshift, and much more.
To install this collection and its dependencies, you will need to use the Ansible ansible-galaxy
command:
ansible-galaxy collection install edge.microshift
To use this while developing, run the following commands from within your local directory you pulled to this git repo to in order to symlink this git repo to the appropriate Ansible Collection path.
mkdir -p ~/.ansible/collections/ansible_collections/edge
ln -s $(pwd) ~/.ansible/collections/ansible_collections/edge/microshift
You will need a RHEL 9.2 system
The RHEL 9.2 system will act as the microshift node.
Run the example playbook to install latest V4.13 microshift on the RHEL system.
The example uses inventory group all
, so be sure to setup your ansible inventory correctly.
ansible-playbook playbooks/microshift_rpm_install.yml -e rpm_install_version=4.13.*
If you just want to try out on the local host, use
ansible-playbook -i localhost, playbooks/microshift_rpm_install.yml -e rpm_install_version=4.13.*
This requires the current user to ssh into localhost.
The RHEL 9.2 system will act as the image build server to create the Microshift image. Run the playbook to create an image with the microshift package and configurations on the RHEL system:
ansible-playbook playbook/microshift_image_build.yml
To deploy an application on a running microshift system refer to the app role README
Join the Ansible forum to ask questions, get help, and interact with us.
- Get Help: get help or help others.
Please add appropriate tags if you start new discussions; for example,
use the
edge
tag. - Social Spaces: meet and interact with fellow enthusiasts.
- News & Announcements: track project-wide announcements including social events.
We announce releases and important changes through Ansible's Bullhorn newsletter.
We also take part in the global quarterly Ansible Contributor Summit virtually or in-person.
For more information about communication, refer to the Ansible Communication guide.
The process of decision making in this collection is based on discussing and finding consensus among participants.
Every voice is important. If you have something on your mind, create an issue or dedicated discussion and let's discuss it!
This collection has been tested against following Ansible versions: >=2.12.
Plugins and modules within a collection may be tested with only specific Ansible versions. A collection may contain metadata that identifies these versions. PEP440 is the schema used to describe the versions of Ansible.
- ansible-core (devel)
- ansible-core 2.14 (stable)
- ansible-core 2.13 (stable)
- ansible-core 2.12 (stable)
Roles:
- image_builder
- app
- rpm_install
NOTE: This collection is not yet in Ansible Galaxy as it is under heavy development and has not been released
Before using this collection, you need to install it with the Ansible Galaxy command-line tool:
ansible-galaxy collection install edge.microshift
You can also include it in a requirements.yml
file and install it with ansible-galaxy collection install -r requirements.yml
, using the format:
---
collections:
- name: edge.microshift
Note that if you install the collection from Ansible Galaxy, it will not be upgraded automatically when you upgrade the ansible
package. To upgrade the collection to the latest available version, run the following command:
ansible-galaxy collection install edge.microshift --upgrade
You can also install a specific version of the collection, for example, if you need to downgrade when something is broken in the latest version (please report an issue in this repository). Use the following syntax to install version 0.1.0
:
ansible-galaxy collection install edge.microshift:==0.1.0
See Ansible Using collections for more details.
We follow the Ansible Code of Conduct in all our interactions within this project.
If you encounter abusive behavior, please refer to the policy violations section of the Code for information on how to raise a complaint.
The content of this collection is made by people like you, a community of individuals collaborating on making the world better through developing automation software.
We are actively accepting new contributors.
Any kind of contribution is very welcome.
You don't know how to start? Refer to our contribution guide!
We use the following guidelines:
- CONTRIBUTING
- REVIEW_CHECKLIST
- Ansible Community Guide
- Ansible Development Guide
- Ansible Collection Development Guide
The current maintainers are listed in the MAINTAINERS file. If you have questions or need help, feel free to mention them in the proposals.
To learn how to maintain / become a maintainer of this collection, refer to the Maintainer guidelines.
See Ansible Using collections for more details.
See the changelog.
- Ansible Collection overview
- Ansible User guide
- Ansible Developer guide
- Ansible Collections Checklist
- Ansible Community code of conduct
- News for Maintainers
GNU General Public License v3.0 or later.
See LICENSE to see the full text.