https://github.com/darkwizard242/ansible-role-hadolint
Ansible role for 'hadolint'. Available on Ansible Galaxy.
https://github.com/darkwizard242/ansible-role-hadolint
ansible ansible-galaxy ansible-role dockerfile-linter hadolint linux
Last synced: 8 months ago
JSON representation
Ansible role for 'hadolint'. Available on Ansible Galaxy.
- Host: GitHub
- URL: https://github.com/darkwizard242/ansible-role-hadolint
- Owner: darkwizard242
- License: mit
- Created: 2021-12-29T17:23:56.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-22T03:33:13.000Z (over 1 year ago)
- Last Synced: 2024-12-28T06:00:49.259Z (10 months ago)
- Topics: ansible, ansible-galaxy, ansible-role, dockerfile-linter, hadolint, linux
- Language: Python
- Homepage: https://galaxy.ansible.com/darkwizard242/hadolint
- Size: 38.1 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/darkwizard242/ansible-role-hadolint/actions?query=workflow%3Abuild-and-test) [](https://github.com/darkwizard242/ansible-role-hadolint/actions?query=workflow%3Arelease)  [](https://sonarcloud.io/dashboard?id=ansible-role-hadolint) [](https://sonarcloud.io/dashboard?id=ansible-role-hadolint) [](https://sonarcloud.io/dashboard?id=ansible-role-hadolint)  
# Ansible Role: hadolint
Role to install (_by default_) `hadolint` on **Debian/Ubuntu** and **EL** systems. [hadolint](https://github.com/hadolint/hadolint) is a smart Dockerfile linter that helps you build best practice Docker images.
## Requirements
None.
## Role Variables
Available variables are listed below (located in `defaults/main.yml`):
### Variables list:
```yaml
hadolint_app: hadolint
hadolint_version: 2.12.0
hadolint_os: "{{ ansible_system }}"
hadolint_architecture_map:
amd64: x86_64
arm: arm64
x86_64: x86_64
armv6l: armv6
armv7l: armv7
aarch64: arm64
32-bit: "386"
64-bit: x86_64
hadolint_dl_url: https://github.com/{{ hadolint_app }}/{{ hadolint_app }}/releases/download/v{{ hadolint_version }}/{{ hadolint_app }}-{{ hadolint_os }}-{{ hadolint_architecture_map[ansible_architecture] }}
hadolint_bin_path: "/usr/local/bin"
hadolint_bin_permission_mode: '0755'
```### Variables table:
Variable | Description
---------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------
hadolint_app | Defines the app to install i.e. **hadolint**
hadolint_version | Defined to dynamically fetch the desired version to install. Defaults to: **2.12.0**
hadolint_os | Defines os type.
hadolint_architecture_map | Defines os architecture.
hadolint_dl_url | Defines URL to download the hadolint binary from.
hadolint_bin_path | Defined to dynamically set the appropriate path to store hadolint binary into. Defaults to (as generally available on any user's PATH): **/usr/local/bin**
hadolint_bin_permission_mode | Defines the permission mode level for the file. Defaults to: `0755`## Dependencies
None
## Example Playbook
For default behaviour of role (i.e. installation of **hadolint**) in ansible playbooks.
```yaml
- hosts: servers
roles:
- darkwizard242.hadolint
```For customizing behavior of role (i.e. specifying the desired **hadolint** version) in ansible playbooks.
```yaml
- hosts: servers
roles:
- darkwizard242.hadolint
vars:
hadolint_version: 2.7.0
```For customizing behavior of role (i.e. placing binary of **hadolint** package in different location) in ansible playbooks.
```yaml
- hosts: servers
roles:
- darkwizard242.hadolint
vars:
hadolint_bin_path: /bin/
```## License
[MIT](https://github.com/darkwizard242/ansible-role-hadolint/blob/master/LICENSE)
## Author Information
This role was created by [Ali Muhammad](https://www.alimuhammad.dev/).