|
76 | 76 | {% if gitlab_runner.cache_s3_bucket_location is defined %}
|
77 | 77 | --cache-s3-bucket-location '{{ gitlab_runner.cache_s3_bucket_location }}'
|
78 | 78 | {% endif %}
|
| 79 | + {% if gitlab_runner.cache_gcs_bucket_name is defined %} |
| 80 | + --cache-gcs-bucket-name '{{ gitlab_runner.cache_gcs_bucket_name }}' |
| 81 | + {% endif %} |
| 82 | + {% if gitlab_runner.cache_gcs_credentials_file is defined %} |
| 83 | + --cache-gcs-credentials-file '{{ gitlab_runner.cache_gcs_credentials_file }}' |
| 84 | + {% endif %} |
| 85 | + {% if gitlab_runner.cache_gcs_access_id is defined %} |
| 86 | + --cache-gcs-access-id '{{ gitlab_runner.cache_gcs_access_id }}' |
| 87 | + {% endif %} |
| 88 | + {% if gitlab_runner.cache_azure_account_name is defined %} |
| 89 | + --cache-azure-account-name '{{ gitlab_runner.cache_azure_account_name }}' |
| 90 | + {% endif %} |
| 91 | + {% if gitlab_runner.cache_azure_container_name is defined %} |
| 92 | + --cache-azure-container-name '{{ gitlab_runner.cache_azure_container_name }}' |
| 93 | + {% endif %} |
| 94 | + {% if gitlab_runner.cache_azure_storage_domain is defined %} |
| 95 | + --cache-azure-storage-domain '{{ gitlab_runner.cache_azure_storage_domain }}' |
| 96 | + {% endif %} |
79 | 97 | {% if gitlab_runner.builds_dir|default(false) %}
|
80 | 98 | --builds-dir '{{ gitlab_runner.builds_dir }}'
|
81 | 99 | {% endif %}
|
|
99 | 117 | {% if gitlab_runner.cache_s3_secret_key is defined %}
|
100 | 118 | --cache-s3-secret-key '{{ gitlab_runner.cache_s3_secret_key|hash("sha1") }}'
|
101 | 119 | {% endif %}
|
| 120 | + {% if gitlab_runner.cache_gcs_private_key is defined %} |
| 121 | + --cache-gcs-private-key '{{ gitlab_runner.cache_gcs_private_key }}' |
| 122 | + {% endif %} |
| 123 | + {% if gitlab_runner.cache_azure_account_key is defined %} |
| 124 | + --cache-azure-account-key '{{ gitlab_runner.cache_azure_account_key }}' |
| 125 | + {% endif %} |
102 | 126 | {% if gitlab_runner.ssh_password is defined %}
|
103 | 127 | --ssh-password '{{ gitlab_runner.ssh_password|hash("sha1") }}'
|
104 | 128 | {% endif %}
|
|
123 | 147 | {% if gitlab_runner.cache_s3_secret_key is defined %}
|
124 | 148 | --cache-s3-secret-key '{{ gitlab_runner.cache_s3_secret_key }}'
|
125 | 149 | {% endif %}
|
| 150 | + {% if gitlab_runner.cache_gcs_private_key is defined %} |
| 151 | + --cache-gcs-private-key '{{ gitlab_runner.cache_gcs_private_key }}' |
| 152 | + {% endif %} |
| 153 | + {% if gitlab_runner.cache_azure_account_key is defined %} |
| 154 | + --cache-azure-account-key '{{ gitlab_runner.cache_azure_account_key }}' |
| 155 | + {% endif %} |
126 | 156 | {% if gitlab_runner.ssh_password is defined %}
|
127 | 157 | --ssh-password '{{ gitlab_runner.ssh_password }}'
|
128 | 158 | {% endif %}
|
|
0 commit comments