27 lines
723 B
YAML
27 lines
723 B
YAML
---
|
|
### geerlingguy.docker
|
|
docker_users:
|
|
- mg
|
|
- root
|
|
- ansible-user
|
|
- git
|
|
### geerlingguy.pip
|
|
pip_package: python3-pip
|
|
pip_install_packages:
|
|
- name: python-gitlab
|
|
### riemers.gitlab-runner
|
|
gitlab_runner_coordinator_url: https://git.mgrote.net
|
|
gitlab_runner_registration_token: "{{ lookup('keepass', 'gitlab_runner_registration_token', 'password') }}"
|
|
gitlab_runner_runners:
|
|
- name: "{{ ansible_hostname }}-docker"
|
|
executor: docker
|
|
docker_image: 'alpine'
|
|
docker_volumes:
|
|
- "/var/run/docker.sock:/var/run/docker.sock"
|
|
### oefenweb.ufw
|
|
ufw_rules:
|
|
- rule: allow
|
|
to_port: 22
|
|
protocol: tcp
|
|
comment: 'ssh'
|
|
from_ip: 192.168.2.0/24
|