Update molecule test and refactor
ci/woodpecker/push/lint Pipeline was successful Details
ci/woodpecker/push/test Pipeline failed Details

This commit is contained in:
Santiago Lo Coco 2024-04-15 22:44:14 +02:00
parent 1d65cf897f
commit f3c94b9bd1
6 changed files with 29 additions and 37 deletions

View File

@ -1,7 +1,11 @@
profile: production
skip_list:
- galaxy[no-changelog]
- meta-runtime[unsupported-version]
mock_roles:
- slococo.playground.ssh_config
- slococo.playground.local_accounts
exclude_paths:
- converge.yml

View File

@ -7,7 +7,7 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/ansible/ansible-lint
rev: v6.20.0
rev: v24.2.2
hooks:
- id: ansible-lint
- repo: https://github.com/psf/black

View File

@ -1,2 +1,2 @@
---
requires_ansible: ">=2.12.0"
requires_ansible: ">=2.14.0"

View File

@ -1,32 +1,21 @@
---
- name: Converge
hosts: all
become: true
- name: Include a playbook from a collection
ansible.builtin.import_playbook: slococo.playground.main
pre_tasks:
- name: Update the apt cache and install openssh packages
ansible.builtin.apt:
update_cache: true
name:
- openssh-server
- openssh-client
state: present
# - name: Converge
# hosts: all
# become: true
- name: Restart ssh service
ansible.builtin.service:
name: sshd
state: started
roles:
- role: slococo.playground.ssh_config
- role: slococo.playground.local_accounts
vars:
local_accounts_list:
- name: local_adm
shell: /bin/bash
userid: 38000087
- name: local_log
shell: /bin/sh
userid: 38000088
expiry_date: '2024-12-31'
passwordless: true
# roles:
# - role: slococo.playground.ssh_config
# - role: slococo.playground.local_accounts
# vars:
# local_accounts_list:
# - name: local_adm
# shell: /bin/bash
# userid: 38000087
# - name: local_log
# shell: /bin/sh
# userid: 38000088
# expiry_date: '2024-12-31'
# passwordless: true

View File

@ -1,13 +1,11 @@
---
dependency:
name: galaxy
ooptions:
ignore-errors: true
driver:
name: docker
platforms:
- name: instance
image: "docker.io/geerlingguy/docker-debian11-ansible:latest"
image: "slococo/dam-testing:latest"
command: ${MOLECULE_DOCKER_COMMAND:-""}
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:rw

View File

@ -5,16 +5,17 @@
shell: "{{ item.shell }}"
uid: "{{ item.userid }}"
expires: "{{ (((item.expiry_date + ' 00:00:00') | to_datetime).strftime('%s')) if item.expiry_date is defined else omit }}"
home: "{{ item.home | default('/home/' + item.name) }}"
home: "{{ item.home | default(omit)}}"
groups: "{{ item.groups | default(omit) }}"
loop: "{{ local_accounts_list }}"
- name: Add key_path to the user accoounts
- name: Add key_path to the user accounts
ansible.builtin.set_fact:
local_accounts_list_agg: >-
{{
local_accounts_list_agg | default([]) + [
item | combine({
'home': item.home | default('/home/' + item.name),
'key_path': local_accounts_key_path | regex_replace('/$', '') + '/id_' + local_accounts_key_type + '_' + item.name
})
]