File tree Expand file tree Collapse file tree 11 files changed +22
-22
lines changed Expand file tree Collapse file tree 11 files changed +22
-22
lines changed Original file line number Diff line number Diff line change @@ -41,8 +41,8 @@ provisioner:
4141 host_vars :
4242 instancegitlabciopenstack1 :
4343 gitlab_runner_version : " 18.0.2"
44- gitlab_runner_deb_file : " https://packages.gitlab.com/runner/gitlab-runner/packages/{{ ansible_distribution | lower }}/{{ ansible_distribution_release | lower }}/gitlab-runner_{{ gitlab_runner_pkg_version }}_amd64.deb/download.deb"
45- gitlab_runner_helper_images_deb_file : " https://packages.gitlab.com/runner/gitlab-runner/packages/{{ ansible_distribution | lower }}/{{ ansible_distribution_release | lower }}/gitlab-runner-helper-images_{{ gitlab_runner_pkg_version }}_all.deb/download.deb"
44+ gitlab_runner_deb_file : " https://packages.gitlab.com/runner/gitlab-runner/packages/{{ ansible_facts.distribution | lower }}/{{ ansible_facts.distribution_release | lower }}/gitlab-runner_{{ gitlab_runner_pkg_version }}_amd64.deb/download.deb"
45+ gitlab_runner_helper_images_deb_file : " https://packages.gitlab.com/runner/gitlab-runner/packages/{{ ansible_facts.distribution | lower }}/{{ ansible_facts.distribution_release | lower }}/gitlab-runner-helper-images_{{ gitlab_runner_pkg_version }}_all.deb/download.deb"
4646 gitlab_runner_install_docker : true
4747 gitlab_runner_ssh_public_key : " test_key.pub"
4848 gitlab_runner_ssh_private_key : " test_key"
Original file line number Diff line number Diff line change 88 hosts : " all"
99 tasks :
1010 - name : " Install necessary packages"
11- when : " ansible_os_family == 'Debian'"
11+ when : " ansible_facts.os_family == 'Debian'"
1212 block :
1313 - name : " Install missing dependencies"
1414 ansible.builtin.apt :
2121 state : " present"
2222 update_cache : true
2323 - name : " Set up iptables"
24- when : " ansible_distribution == 'Debian'"
24+ when : " ansible_facts.distribution == 'Debian'"
2525 block :
2626 - name : " Install missing dependencies"
2727 ansible.builtin.apt :
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ Docker is required for the `docker` executor but not for the
8787# ## Docker-machine variables
8888
8989` ` ` yaml
90- gitlab_runner_docker_machine_binary_url: "https://gitlab.com/gitlab-org/ci-cd/docker-machine/-/releases/v0.16.2-gitlab.25/downloads/docker-machine-Linux-{{ ansible_architecture }}"
90+ gitlab_runner_docker_machine_binary_url: "https://gitlab.com/gitlab-org/ci-cd/docker-machine/-/releases/v0.16.2-gitlab.25/downloads/docker-machine-Linux-{{ ansible_facts.architecture }}"
9191` ` `
9292
9393The URL where to download the docker-machine binary file from.
@@ -102,7 +102,7 @@ The checksum of the downloaded docker-machine binary. This must correspond to th
102102# ## Flatcar Linux configuration
103103
104104` ` ` yaml
105- gitlab_runner_transpiler_binary_url: "https://github.com/coreos/butane/releases/download/v0.23.0/butane-{{ ansible_architecture }}-unknown-linux-gnu"
105+ gitlab_runner_transpiler_binary_url: "https://github.com/coreos/butane/releases/download/v0.23.0/butane-{{ ansible_facts.architecture }}-unknown-linux-gnu"
106106` ` `
107107
108108The URL to the configuration transpiler binary that shall be used.
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ gitlab_runner_pkg_version: "{{ gitlab_runner_version + '-1' if gitlab_runner_ver
1010
1111gitlab_runner_deb_file : " "
1212
13- gitlab_runner_docker_machine_binary_url : " https://gitlab.com/gitlab-org/ci-cd/docker-machine/-/releases/v0.16.2-gitlab.25/downloads/docker-machine-Linux-{{ ansible_architecture }}"
13+ gitlab_runner_docker_machine_binary_url : " https://gitlab.com/gitlab-org/ci-cd/docker-machine/-/releases/v0.16.2-gitlab.25/downloads/docker-machine-Linux-{{ ansible_facts.architecture }}"
1414
1515gitlab_runner_docker_machine_binary_checksum : " sha256:04cc18c8f6ee0d71614064fa81116f20f3a37af53eeebf19bfb832ab9c46d3a0"
1616
17- gitlab_runner_transpiler_binary_url : " https://github.com/coreos/butane/releases/download/v0.23.0/butane-{{ ansible_architecture }}-unknown-linux-gnu"
17+ gitlab_runner_transpiler_binary_url : " https://github.com/coreos/butane/releases/download/v0.23.0/butane-{{ ansible_facts.architecture }}-unknown-linux-gnu"
1818
1919gitlab_runner_transpiler_binary_checksum : " sha256:5833ce9f9c2932d9b02bc05821ffb6927d1e896a524c8dd53a4c9d2d90c47e2c"
2020
Original file line number Diff line number Diff line change 2323 ansible.builtin.deb822_repository :
2424 name : " gitlab-runner"
2525 types : " deb"
26- uris : " https://packages.gitlab.com/runner/gitlab-runner/{{ ansible_distribution | lower }}/"
27- suites : " {{ ansible_distribution_release }}"
26+ uris : " https://packages.gitlab.com/runner/gitlab-runner/{{ ansible_facts.distribution | lower }}/"
27+ suites : " {{ ansible_facts.distribution_release }}"
2828 components : " main"
2929 signed_by : " https://packages.gitlab.com/runner/gitlab-runner/gpgkey"
3030 state : " present"
3737 owner : " root"
3838 group : " root"
3939 mode : ' 0644'
40- when : " ansible_distribution == 'Debian'"
40+ when : " ansible_facts.distribution == 'Debian'"
4141
4242 - name : " Install gitlab-runner-helper-images with downgrade option"
4343 ansible.builtin.apt :
Original file line number Diff line number Diff line change 55
66---
77- name : " Set OS family dependent variables"
8- ansible.builtin.include_vars : " {{ ansible_os_family | lower }}.yml"
8+ ansible.builtin.include_vars : " {{ ansible_facts.os_family | lower }}.yml"
99
1010- name : " Set variable if autoscaling runner must be configured"
1111 ansible.builtin.set_fact :
2727
2828- name : " Include installation tasks for Debian-like OS"
2929 ansible.builtin.include_tasks : " install.debianlike.yml"
30- when : " ansible_os_family == 'Debian'"
30+ when : " ansible_facts.os_family == 'Debian'"
3131
3232- name : " Include autoscaler install tasks"
3333 ansible.builtin.include_tasks : " install.autoscaler-plugin.yml"
Original file line number Diff line number Diff line change @@ -221,15 +221,15 @@ keepalived_weight: '0'
221221Set the unicast source IP address of the Keepalived instance :
222222
223223` ` ` yaml
224- keepalived_unicast_src_ip: '{{ ansible_default_ipv4 .address }}'
224+ keepalived_unicast_src_ip: '{{ ansible_facts.default_ipv4 .address }}'
225225` ` `
226226
227227# ### Keepalived instance network interface
228228
229229Set network interface to which the floating IP address is associated :
230230
231231` ` ` yaml
232- keepalived_interface: "{{ ansible_default_ipv4 .interface }}"
232+ keepalived_interface: "{{ ansible_facts.default_ipv4 .interface }}"
233233` ` `
234234
235235# ### Keepalived instance virtual IP address and network interface
Original file line number Diff line number Diff line change @@ -59,11 +59,11 @@ keepalived_priority: "{{ '100' if keepalived_state == 'MASTER' else '99' }}"
5959# Keepalived instance state MASTER or BACKUP
6060keepalived_state : " MASTER"
6161# Keepalived instance network interface
62- keepalived_interface : " {{ ansible_default_ipv4 .interface }}"
62+ keepalived_interface : " {{ ansible_facts.default_ipv4 .interface }}"
6363# Keepalived instance virtual IP address and network interface
6464keepalived_virtual_ipaddress_config : " {{ keepalived_virtual_ip_address }} dev {{ keepalived_interface }}"
6565# Keepalived instance unicast source IP address
66- keepalived_unicast_src_ip : " {{ ansible_default_ipv4 .address }}"
66+ keepalived_unicast_src_ip : " {{ ansible_facts.default_ipv4 .address }}"
6767
6868# Enable process tracking
6969keepalived_enable_process_tracking : true
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ Choose another release channel for the Zammad packages.
4343Please refer to <https://packager.io/gh/zammad/zammad> for a complete list.
4444
4545` ` ` yaml
46- zammad_domain_name : " {{ ansible_fqdn }}"
46+ zammad_domain_name : " {{ ansible_facts.fqdn }}"
4747` ` `
4848
4949Zammad's fully qualified domain name.
Original file line number Diff line number Diff line change 77zammad_version : " 6.5.0"
88zammad_release_channel : " stable"
99zammad_repo_url : " https://dl.packager.io/srv/deb/zammad/zammad/{{ zammad_release_channel }}/{{ ansible_facts.distribution | lower }}"
10- zammad_domain_name : " {{ ansible_fqdn }}"
10+ zammad_domain_name : " {{ ansible_facts.fqdn }}"
1111
1212zammad_nginx_config_path : " /etc/nginx/sites-available/zammad.conf"
1313zammad_ssl_cert_path : " /etc/ssl/certs/zammad_cert.pem"
You can’t perform that action at this time.
0 commit comments