File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -326,7 +326,7 @@ COPY apt_preferences /etc/apt/preferences.d/kolla-custom
326
326
] %}
327
327
328
328
{# NOTE(hrw): type field defaults to 'asc' which is used for single keys #}
329
- {% set remote_apt_keys = [
329
+ {% set base_remote_apt_keys = [
330
330
{'name' : 'elasticsearch' , 'url' : 'https://artifacts.elastic.co/GPG-KEY-elasticsearch' },
331
331
{'name' : 'grafana' , 'url' : 'https://packages.grafana.com/gpg.key' },
332
332
{'name' : 'influxdb' , 'url' : 'https://repos.influxdata.com/influxdb.key' },
@@ -342,7 +342,7 @@ COPY apt_preferences /etc/apt/preferences.d/kolla-custom
342
342
{% - if not loop .last %} \
343
343
{% endif -%}
344
344
{% endfor %}
345
- {% for key in remote_apt_keys | customizable ('remote_apt_keys' ) %}
345
+ {% for key in base_remote_apt_keys | customizable ('remote_apt_keys' ) %}
346
346
{% - if loop .first %} RUN mkdir -p /etc/kolla/apt-keys/ {% endif %} && curl {{ key.url }} -o /etc/kolla/apt-keys/{{ key.name }}.{{ key.type | default('asc') }}
347
347
{% - if not loop .last %} \
348
348
{% endif -%}
You can’t perform that action at this time.
0 commit comments