General Ansible roles from EF DevOps for infrastructure management, monitoring, and security.
Install a specific version from GitHub releases:
ansible-galaxy collection install https://github.com/ethereum-foundation/ansible-collection/releases/download/v1.2.0/ethereum-quokkaops-1.2.0.tar.gz
Add to your requirements.yml
:
collections:
# Pin to a specific version
- name: https://github.com/ethereum-foundation/ansible-collection/releases/download/v1.2.0/ethereum-quokkaops-1.2.0.tar.gz
type: url
Then install with:
ansible-galaxy collection install -r requirements.yml
This collection follows semantic versioning:
- Major (X.0.0): Breaking changes
- Minor (0.X.0): New features, backward compatible
- Patch (0.0.X): Bug fixes, backward compatible
For downstream repositories, you can use version constraints in your requirements.yml
:
collections:
# Stay within major version 1.x (recommended)
- name: ethereum.quokkaops
version: ">=1.0.0,<2.0.0"
# Or stay within minor version 1.2.x
- name: ethereum.quokkaops
version: ">=1.2.0,<1.3.0"
To automatically update your collection dependency to the latest version within constraints, run:
ansible-galaxy collection install -r requirements.yml --upgrade
- acme-certificates: ACME certificate management
- bootstrap: System bootstrapping and basic configuration
- discourse: Discourse forum deployment
- docker_debian: Docker installation on Debian systems
- extra-user: Additional user management
- grafana-agent: Grafana agent deployment and configuration
- haproxy-lb: HAProxy load balancer configuration
- jvb: Jitsi Video Bridge setup
- k3s: Lightweight Kubernetes distribution
- macmini-server: Mac Mini server configuration
- opnsense_nat: OPNsense NAT configuration
- teleport-agent: Teleport agent setup
- vector: Vector log aggregation
- vrrp: VRRP/keepalived configuration
Use the automated release script:
# Increment patch version (1.0.0 -> 1.0.1)
./scripts/release.sh patch
# Increment minor version (1.0.1 -> 1.1.0)
./scripts/release.sh minor
# Increment major version (1.1.0 -> 2.0.0)
./scripts/release.sh major
# Set specific version
./scripts/release.sh 1.2.3
The script will:
- Validate the current git state (clean working directory)
- Update the version in
galaxy.yml
- Commit the version change
- Create and push the version tag
- Trigger GitHub Actions to build and publish the release
If you prefer to do it manually:
- Update version in
galaxy.yml
- Create and push a git tag:
git add galaxy.yml git commit -m "Bump version to 1.2.0" git tag v1.2.0 git push origin main v1.2.0
- CI: Runs on every push/PR with linting and build tests
- Release: Triggered on version tags, builds and publishes collection artifacts