add docker.sock mount to docker runner
This commit is contained in:
parent
d099b39b6f
commit
698427ee51
@ -5,7 +5,7 @@ driver:
|
|||||||
name: docker
|
name: docker
|
||||||
platforms:
|
platforms:
|
||||||
- name: instance
|
- name: instance
|
||||||
image: ubuntu-docker
|
image: docker.io/geerlingguy/docker-ubuntu2404-ansible:latest
|
||||||
pre_build_image: true
|
pre_build_image: true
|
||||||
command: ${MOLECULE_DOCKER_COMMAND:-""}
|
command: ${MOLECULE_DOCKER_COMMAND:-""}
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
name:
|
name:
|
||||||
- debian-archive-keyring
|
- debian-archive-keyring
|
||||||
- apt-transport-https
|
- apt-transport-https
|
||||||
|
- python3-gitlab
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
# Key and Repository links are taken from official installation script
|
# Key and Repository links are taken from official installation script
|
||||||
@ -38,11 +39,6 @@
|
|||||||
name: gitlab-runner
|
name: gitlab-runner
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: Install pythong dependencies for community.general.gitlab_runner module.
|
|
||||||
ansible.builtin.pip:
|
|
||||||
name: python-gitlab
|
|
||||||
state: present
|
|
||||||
|
|
||||||
# Using deprecated method of regestiring runners
|
# Using deprecated method of regestiring runners
|
||||||
# (with registration token) because I had issues with
|
# (with registration token) because I had issues with
|
||||||
# api returning "403 Insufficient permissions" response.
|
# api returning "403 Insufficient permissions" response.
|
||||||
@ -59,6 +55,11 @@
|
|||||||
locked: true
|
locked: true
|
||||||
register: runner
|
register: runner
|
||||||
|
|
||||||
|
- name: Prevent rerunning configuration tasks if the runner already registered.
|
||||||
|
ansible.builtin.debug:
|
||||||
|
msg: Runner already installed, skipping the next steps.
|
||||||
|
when: runner.changed == false and runner.failed == false
|
||||||
|
|
||||||
- name: Install Gitlab Runner configuration file.
|
- name: Install Gitlab Runner configuration file.
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: templates/config.toml.j2
|
src: templates/config.toml.j2
|
||||||
@ -68,6 +69,7 @@
|
|||||||
mode: '0600'
|
mode: '0600'
|
||||||
notify:
|
notify:
|
||||||
- Restart gitlab-runner service
|
- Restart gitlab-runner service
|
||||||
|
when: runner.changed == true
|
||||||
|
|
||||||
- name: Enable gitlab-runner service.
|
- name: Enable gitlab-runner service.
|
||||||
ansible.builtin.service:
|
ansible.builtin.service:
|
||||||
|
@ -27,6 +27,6 @@ shutdown_timeout = 0
|
|||||||
disable_entrypoint_overwrite = false
|
disable_entrypoint_overwrite = false
|
||||||
oom_kill_disable = false
|
oom_kill_disable = false
|
||||||
disable_cache = false
|
disable_cache = false
|
||||||
volumes = ["/cache"]
|
volumes = ["/var/run/docker.sock:/var/run/docker.sock", "/cache"]
|
||||||
shm_size = 0
|
shm_size = 0
|
||||||
network_mtu = 0
|
network_mtu = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user