Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atosatto/ansible-requirements-lint
Keep you Ansible dependencies up to date
https://github.com/atosatto/ansible-requirements-lint
ansible ansible-requirements linter
Last synced: 3 months ago
JSON representation
Keep you Ansible dependencies up to date
- Host: GitHub
- URL: https://github.com/atosatto/ansible-requirements-lint
- Owner: atosatto
- License: mit
- Created: 2020-03-09T16:57:12.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-03T13:27:17.000Z (almost 5 years ago)
- Last Synced: 2024-10-10T22:14:16.021Z (4 months ago)
- Topics: ansible, ansible-requirements, linter
- Language: Go
- Size: 1.94 MB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ansible-requirements-lint - keep you Ansible dependencies up to date
`ansible-requirements-lint` is a simple command-line tool to check if your Ansible dependencies are up to date.
[![ci](https://github.com/atosatto/ansible-requirements-lint/workflows/ci/badge.svg)](https://github.com/atosatto/ansible-requirements-lint/actions?query=workflow%3Aci)
[![GoDoc](https://godoc.org/github.com/atosatto/ansible-requirements-lint?status.svg)](https://godoc.org/github.com/atosatto/ansible-requirements-lint)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Go Report Card](https://goreportcard.com/badge/github.com/atosatto/ansible-requirements-lint)](https://goreportcard.com/report/github.com/atosatto/ansible-requirements-lint)
![GitHub All Releases](https://img.shields.io/github/downloads/atosatto/ansible-requirements-lint/total)## Installation
Get the latest `ansible-requirements-lint` release
```bash
curl -sLS https://raw.githubusercontent.com/atosatto/ansible-requirements-lint/master/contrib/install.sh | sh
```Or, download a specific version
```bash
curl -sLS https://raw.githubusercontent.com/atosatto/ansible-requirements-lint/master/contrib/install.sh | VERSION=v1.0.0 sh
```## Usage
Given the following `requirements.yml` file in your current working directory
```bash
$ cat requirements.yml
---# Prometheus
- name: atosatto.prometheus
version: v1.0.0# Alertmanager
- name: atosatto.alertmanager
version: v1.0.0# Grafana
- name: atosatto.grafana
version: v1.0.0
````ansible-requirements-lint` can be used to detect updates to the list of requirements with
```bash
$ ansible-requirements-lint requirements.yml
WARN: atosatto.prometheus: role not at the latest version, upgrade from v1.0.1 to v1.1.0.
WARN: atosatto.grafana: role not at the latest version, upgrade from v1.0.0 to v1.1.0.
```In addition to requirements files, `ansible-requirements-lint` can parse role dependencies
declared in the `meta/main.yml` file in your role directory```bash
$ cat meta/main.yml
---dependencies:
- role: atosatto.prometheus
version: v1.0.0
prometheus_release_tag: "v2.16.0"- name: atosatto.alertmanager
version: v1.0.0
```Running `ansible-requirements-lint` will produce the following results
```bash
$ ansible-requirements-lint meta/main.yml
WARN: atosatto.prometheus: role not at the latest version, upgrade from v1.0.0 to v1.1.0.
```## License
MIT
## Author Information
Andrea Tosatto ([@\_hilbert\_](https://twitter.com/_hilbert_))