1
0

Format files with ansible-lint

This commit is contained in:
Anton Vakhrushev 2025-05-05 18:04:54 +03:00
parent e68920c0e2
commit 2d6cb3ffe0
Signed by: av
GPG Key ID: F5BF52FC352E255A
8 changed files with 55 additions and 53 deletions

View File

@ -1,3 +1,3 @@
--- ---
exclude_paths: exclude_paths:
- 'galaxy.roles/' - "galaxy.roles/"

View File

@ -8,7 +8,7 @@
vars: vars:
app_name: "homepage" app_name: "homepage"
base_dir: "/home/major/applications/{{ app_name }}/" base_dir: "/home/{{ primary_user }}/applications/{{ app_name }}/"
docker_registry_prefix: "cr.yandex/crplfk0168i4o8kd7ade" docker_registry_prefix: "cr.yandex/crplfk0168i4o8kd7ade"
homepage_web_image: "{{ homepage_web_image | default(omit) }}" homepage_web_image: "{{ homepage_web_image | default(omit) }}"

View File

@ -7,12 +7,12 @@
- vars/vars.yml - vars/vars.yml
vars: vars:
netdata_version: 'v2.4.0' netdata_version: "v2.4.0"
netdata_image: 'netdata/netdata:{{ netdata_version }}' netdata_image: "netdata/netdata:{{ netdata_version }}"
netdata_exposed_port: '{{ netdata_port }}' netdata_exposed_port: "{{ netdata_port }}"
tasks: tasks:
- name: 'Grab docker group id.' - name: "Grab docker group id."
ansible.builtin.shell: ansible.builtin.shell:
cmd: | cmd: |
set -o pipefail set -o pipefail
@ -21,29 +21,29 @@
register: netdata_docker_group_output register: netdata_docker_group_output
changed_when: netdata_docker_group_output.rc != 0 changed_when: netdata_docker_group_output.rc != 0
- name: 'Create NetData container from {{ netdata_image }}' - name: "Create NetData container from {{ netdata_image }}"
community.docker.docker_container: community.docker.docker_container:
name: netdata name: netdata
image: '{{ netdata_image }}' image: "{{ netdata_image }}"
image_name_mismatch: 'recreate' image_name_mismatch: "recreate"
restart_policy: 'unless-stopped' restart_policy: "unless-stopped"
published_ports: published_ports:
- '127.0.0.1:{{ netdata_exposed_port }}:19999' - "127.0.0.1:{{ netdata_exposed_port }}:19999"
volumes: volumes:
- '/:/host/root:ro,rslave' - "/:/host/root:ro,rslave"
- '/etc/group:/host/etc/group:ro' - "/etc/group:/host/etc/group:ro"
- '/etc/localtime:/etc/localtime:ro' - "/etc/localtime:/etc/localtime:ro"
- '/etc/os-release:/host/etc/os-release:ro' - "/etc/os-release:/host/etc/os-release:ro"
- '/etc/passwd:/host/etc/passwd:ro' - "/etc/passwd:/host/etc/passwd:ro"
- '/proc:/host/proc:ro' - "/proc:/host/proc:ro"
- '/run/dbus:/run/dbus:ro' - "/run/dbus:/run/dbus:ro"
- '/sys:/host/sys:ro' - "/sys:/host/sys:ro"
- '/var/log:/host/var/log:ro' - "/var/log:/host/var/log:ro"
- '/var/run/docker.sock:/var/run/docker.sock:ro' - "/var/run/docker.sock:/var/run/docker.sock:ro"
capabilities: capabilities:
- 'SYS_PTRACE' - "SYS_PTRACE"
- 'SYS_ADMIN' - "SYS_ADMIN"
security_opts: security_opts:
- 'apparmor:unconfined' - "apparmor:unconfined"
env: env:
PGID: '{{ netdata_docker_group_output.stdout | default(999) }}' PGID: "{{ netdata_docker_group_output.stdout | default(999) }}"

View File

@ -1,8 +1,8 @@
--- ---
# defaults file for eget # defaults file for eget
eget_version: '1.3.4' eget_version: "1.3.4"
eget_download_url: 'https://github.com/zyedidia/eget/releases/download/v{{ eget_version }}/eget-{{ eget_version }}-linux_amd64.tar.gz' eget_download_url: "https://github.com/zyedidia/eget/releases/download/v{{ eget_version }}/eget-{{ eget_version }}-linux_amd64.tar.gz"
eget_install_path: '/usr/bin/eget' eget_install_path: "/usr/bin/eget"
eget_download_dest: '/tmp/{{ eget_download_url | split("/") | last }}' eget_download_dest: '/tmp/{{ eget_download_url | split("/") | last }}'
eget_unarchive_dest: '{{ eget_download_dest | regex_replace("(\.tar\.gz|\.zip)$", "") }}' eget_unarchive_dest: '{{ eget_download_dest | regex_replace("(\.tar\.gz|\.zip)$", "") }}'

View File

@ -1,6 +1,7 @@
---
galaxy_info: galaxy_info:
author: 'Anton Vakhrushev' author: "Anton Vakhrushev"
description: 'Role for installation eget utility' description: "Role for installation eget utility"
# If the issue tracker for your role is not on github, uncomment the # If the issue tracker for your role is not on github, uncomment the
# next line and provide a value # next line and provide a value
@ -13,9 +14,9 @@ galaxy_info:
# - GPL-3.0-only # - GPL-3.0-only
# - Apache-2.0 # - Apache-2.0
# - CC-BY-4.0 # - CC-BY-4.0
license: 'MIT' license: "MIT"
min_ansible_version: '2.1' min_ansible_version: "2.1"
# If this a Container Enabled role, provide the minimum Ansible Container version. # If this a Container Enabled role, provide the minimum Ansible Container version.
# min_ansible_container_version: # min_ansible_container_version:

View File

@ -1,30 +1,30 @@
--- ---
- name: 'Download eget from url "{{ eget_download_url }}"' - name: 'Download eget from url "{{ eget_download_url }}"'
ansible.builtin.get_url: ansible.builtin.get_url:
url: '{{ eget_download_url }}' url: "{{ eget_download_url }}"
dest: '{{ eget_download_dest }}' dest: "{{ eget_download_dest }}"
mode: '0600' mode: "0600"
- name: 'Unarchive eget' - name: "Unarchive eget"
ansible.builtin.unarchive: ansible.builtin.unarchive:
src: '{{ eget_download_dest }}' src: "{{ eget_download_dest }}"
dest: '/tmp' dest: "/tmp"
list_files: true list_files: true
remote_src: true remote_src: true
- name: 'Install eget binary' - name: "Install eget binary"
ansible.builtin.copy: ansible.builtin.copy:
src: '{{ (eget_unarchive_dest, "eget") | path_join }}' src: '{{ (eget_unarchive_dest, "eget") | path_join }}'
dest: '{{ eget_install_path }}' dest: "{{ eget_install_path }}"
mode: '0755' mode: "0755"
remote_src: true remote_src: true
- name: 'Remove temporary files' - name: "Remove temporary files"
ansible.builtin.file: ansible.builtin.file:
path: '{{ eget_download_dest }}' path: "{{ eget_download_dest }}"
state: absent state: absent
- name: 'Remove temporary directories' - name: "Remove temporary directories"
ansible.builtin.file: ansible.builtin.file:
path: '{{ eget_unarchive_dest }}' path: "{{ eget_unarchive_dest }}"
state: absent state: absent

View File

@ -1,24 +1,24 @@
--- ---
# tasks file for eget # tasks file for eget
- name: 'Check if eget installed' - name: "Check if eget installed"
ansible.builtin.command: ansible.builtin.command:
cmd: '{{ eget_install_path }} --version' cmd: "{{ eget_install_path }} --version"
register: eget_installed_output register: eget_installed_output
ignore_errors: true ignore_errors: true
changed_when: false changed_when: false
- name: 'Check eget installed version' - name: "Check eget installed version"
ansible.builtin.set_fact: ansible.builtin.set_fact:
eget_need_install: '{{ not (eget_installed_output.rc == 0 and eget_version in eget_installed_output.stdout) }}' eget_need_install: "{{ not (eget_installed_output.rc == 0 and eget_version in eget_installed_output.stdout) }}"
- name: 'Assert that installation flag is defined' - name: "Assert that installation flag is defined"
ansible.builtin.assert: ansible.builtin.assert:
that: that:
- eget_need_install is defined - eget_need_install is defined
- eget_need_install is boolean - eget_need_install is boolean
- name: 'Download eget and install eget' - name: "Download eget and install eget"
ansible.builtin.include_tasks: ansible.builtin.include_tasks:
file: 'install.yml' file: "install.yml"
when: eget_need_install when: eget_need_install

View File

@ -27,7 +27,8 @@
- name: "Prepare env variables." - name: "Prepare env variables."
ansible.builtin.set_fact: ansible.builtin.set_fact:
env_dict: '{{ owner_env | combine({"CURRENT_UID": user_create_result.uid | default(owner_name), "CURRENT_GID": user_create_result.group | default(owner_group)}) }}' env_dict: '{{ owner_env | combine({"CURRENT_UID": user_create_result.uid | default(owner_name), "CURRENT_GID": user_create_result.group | default(owner_group)})
}}'
- name: 'Set up environment variables for user "{{ owner_name }}".' - name: 'Set up environment variables for user "{{ owner_name }}".'
ansible.builtin.template: ansible.builtin.template: