Rootless Docker requires newuidmap/newgidmap kernel support which doesn't work in nested Docker containers (Operation not permitted). Added docker_rootless_setup variable (default true) to skip the daemon startup steps. Set to false in all molecule converge playbooks so tests verify package installation, user creation, service file rendering, and config without requiring a working rootless daemon. Generated with [Devin](https://devin.ai) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
13 lines
285 B
YAML
13 lines
285 B
YAML
---
|
|
- name: Converge
|
|
hosts: all
|
|
become: true
|
|
vars:
|
|
gitea_url: "http://localhost:3000"
|
|
registration_token: "fake-token-for-testing"
|
|
runner_name: "update-test-runner"
|
|
skip_runner_registration: true
|
|
docker_rootless_setup: false
|
|
roles:
|
|
- role: gitea-runner
|