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: skip_list:
- galaxy[no-changelog] - galaxy[no-changelog]
- meta-runtime[unsupported-version]
mock_roles: mock_roles:
- slococo.playground.ssh_config - slococo.playground.ssh_config
- slococo.playground.local_accounts - slococo.playground.local_accounts
exclude_paths:
- converge.yml

View File

@ -7,7 +7,7 @@ repos:
- id: end-of-file-fixer - id: end-of-file-fixer
- id: trailing-whitespace - id: trailing-whitespace
- repo: https://github.com/ansible/ansible-lint - repo: https://github.com/ansible/ansible-lint
rev: v6.20.0 rev: v24.2.2
hooks: hooks:
- id: ansible-lint - id: ansible-lint
- repo: https://github.com/psf/black - 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 - name: Include a playbook from a collection
hosts: all ansible.builtin.import_playbook: slococo.playground.main
become: true
pre_tasks: # - name: Converge
- name: Update the apt cache and install openssh packages # hosts: all
ansible.builtin.apt: # become: true
update_cache: true
name:
- openssh-server
- openssh-client
state: present
- name: Restart ssh service # roles:
ansible.builtin.service: # - role: slococo.playground.ssh_config
name: sshd # - role: slococo.playground.local_accounts
state: started # vars:
# local_accounts_list:
roles: # - name: local_adm
- role: slococo.playground.ssh_config # shell: /bin/bash
- role: slococo.playground.local_accounts # userid: 38000087
vars: # - name: local_log
local_accounts_list: # shell: /bin/sh
- name: local_adm # userid: 38000088
shell: /bin/bash # expiry_date: '2024-12-31'
userid: 38000087 # passwordless: true
- name: local_log
shell: /bin/sh
userid: 38000088
expiry_date: '2024-12-31'
passwordless: true

View File

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

View File

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