File tree 3 files changed +5
-0
lines changed
3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 57
57
--ssh-host '{{ gitlab_runner.ssh_host | default("") }}'
58
58
--ssh-port '{{ gitlab_runner.ssh_port | default("") }}'
59
59
--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") }}'
60
61
{% if gitlab_runner.cache_type is defined %}
61
62
--cache-type '{{ gitlab_runner.cache_type }}'
62
63
{% endif %}
Original file line number Diff line number Diff line change 56
56
{% if gitlab_runner.ssh_identity_file is defined %}
57
57
--ssh-identity-file '{{ gitlab_runner.ssh_identity_file }}'
58
58
{% 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 %}
59
62
{% if gitlab_runner.cache_type is defined %}
60
63
--cache-type '{{ gitlab_runner.cache_type }}'
61
64
{% endif %}
Original file line number Diff line number Diff line change 96
96
--ssh-host '{{ gitlab_runner.ssh_host | default("") }}'
97
97
--ssh-port '{{ gitlab_runner.ssh_port | default("") }}'
98
98
--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") }}'
99
100
{% if gitlab_runner.executor == "virtualbox" and gitlab_runner.virtualbox_base_name %}
100
101
--virtualbox-base-name '{{ gitlab_runner.virtualbox_base_name }}'
101
102
--virtualbox-base-snapshot '{{ gitlab_runner.virtualbox_base_snapshot | default("") }}'
You can’t perform that action at this time.
0 commit comments