homeserver/group_vars/gitlabrunner.yml

34 lines
936 B
YAML
Raw Normal View History

---
### geerlingguy.docker
docker_users:
- mg
- root
- ansible-user
2021-01-21 09:07:19 +01:00
- git
2021-02-01 08:20:01 +01:00
- gitlab-runner
### geerlingguy.pip
pip_package: python3-pip
pip_install_packages:
- name: python-gitlab
2021-01-27 09:15:34 +01:00
### riemers.gitlab-runner
gitlab_runner_coordinator_url: https://git.mgrote.net
gitlab_runner_registration_token: "{{ lookup('keepass', 'gitlab_runner_production_registration_token', 'password') }}"
2021-01-27 09:15:34 +01:00
gitlab_runner_runners:
- name: "{{ ansible_hostname }}-docker"
executor: docker
2021-02-01 08:20:01 +01:00
tags:
- ansible
- hadolint
- name: "{{ ansible_hostname }}-shell"
executor: shell
tags:
- docker-build
# Wenn Änderungen nicht übernommen werden, Runner löschen und neu anlegen.
2021-02-01 08:33:14 +01:00
### oefenweb.ufw
ufw_rules: #from: ... ist nicht vorhanden da aus dem Docker-Netzwerk darauf zugegriffen werden soll
- rule: allow
to_port: 22
protocol: tcp
comment: 'ssh'