Skip to content

Commit fb99e28

Browse files
committed
Add possibility to setup gitlab_runner.ssh_disable_strict_host_key_checking
1 parent a2d45f3 commit fb99e28

3 files changed

+5
-0
lines changed

tasks/register-runner-container.yml

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
--ssh-host '{{ gitlab_runner.ssh_host | default("") }}'
5858
--ssh-port '{{ gitlab_runner.ssh_port | default("") }}'
5959
--ssh-identity-file '{{ gitlab_runner.ssh_identity_file | default("") }}'
60+
--ssh-disable-strict-host-key-checking '{{ gitlab_runner.ssh_disable_strict_host_key_checking | default("false") }}'
6061
{% if gitlab_runner.cache_type is defined %}
6162
--cache-type '{{ gitlab_runner.cache_type }}'
6263
{% endif %}

tasks/register-runner-windows.yml

+3
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@
5656
{% if gitlab_runner.ssh_identity_file is defined %}
5757
--ssh-identity-file '{{ gitlab_runner.ssh_identity_file }}'
5858
{% endif %}
59+
{%if gitlab_runner.ssh_disable_strict_host_key_checking is defined %}
60+
--ssh-disable-strict-host-key-checking '{{ gitlab_runner.ssh_disable_strict_host_key_checking }}'
61+
{% endif %}
5962
{% if gitlab_runner.cache_type is defined %}
6063
--cache-type '{{ gitlab_runner.cache_type }}'
6164
{% endif %}

tasks/register-runner.yml

+1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
--ssh-host '{{ gitlab_runner.ssh_host | default("") }}'
9797
--ssh-port '{{ gitlab_runner.ssh_port | default("") }}'
9898
--ssh-identity-file '{{ gitlab_runner.ssh_identity_file | default("") }}'
99+
--ssh-disable-strict-host-key-checking '{{ gitlab_runner.ssh_disable_strict_host_key_checking | default("false") }}'
99100
{% if gitlab_runner.executor == "virtualbox" and gitlab_runner.virtualbox_base_name %}
100101
--virtualbox-base-name '{{ gitlab_runner.virtualbox_base_name }}'
101102
--virtualbox-base-snapshot '{{ gitlab_runner.virtualbox_base_snapshot | default("") }}'

0 commit comments

Comments
 (0)