Files
swarm-master/ansible/.ansible-lint
William Valentin aceeb7b542 Initial commit — OpenClaw VM infrastructure
- ansible/: VM provisioning playbooks and roles
  - provision-vm.yml: create KVM VM from Ubuntu cloud image
  - install.yml: install OpenClaw on guest (upstream)
  - customize.yml: swappiness, virtiofs fstab, linger
  - roles/vm/: libvirt domain XML, cloud-init templates
  - inventory.yml + host_vars/zap.yml: zap instance config
- backup-openclaw-vm.sh: daily rsync + MinIO upload
- restore-openclaw-vm.sh: full redeploy from scratch
- README.md: full operational documentation

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 12:18:31 -07:00

24 lines
493 B
Plaintext

---
profile: production
skip_list:
- var-naming[no-role-prefix] # Allow variables without role prefix
- risky-shell-pipe # We handle pipefail where needed
- command-instead-of-module # curl for GPG keys is intentional
warn_list:
- args[module] # Warn on module args issues
kinds:
- playbook: "**/playbook.yml"
- tasks: "**/tasks/*.yml"
- vars: "**/defaults/*.yml"
- handlers: "**/handlers/*.yml"
exclude_paths:
- .github/
- venv/
- dist/
use_default_rules: true