provisioning-catalog/components/fleet_base/taskserv/env-fleet_base.j2

13 lines
558 B
Text
Raw Normal View History

FLEET_KEY_INSTALL_PATH={{ taskserv.fleet_key_install_path }}
FLEET_REGISTRY_COUNT={{ taskserv.registries | length }}
{% for reg in taskserv.registries %}
FLEET_REGISTRY_{{ loop.index0 }}_NAME={{ reg.name }}
FLEET_REGISTRY_{{ loop.index0 }}_ENDPOINT={{ reg.endpoint }}
{% endfor %}
{% if taskserv.sccache is defined %}
SCCACHE_ENDPOINT={{ taskserv.sccache.endpoint }}
SCCACHE_BUCKET={{ taskserv.sccache.bucket }}
SCCACHE_REGION={{ taskserv.sccache.region }}
SCCACHE_DISK_PATH={{ taskserv.sccache.disk_path | default(value="/var/cache/sccache") }}
{% endif %}