@@ -5,6 +5,11 @@ reductionist_build_image: true
55reductionist_src_url: "http://github.com/stackhpc/reductionist-rs"
66# Source version.
77reductionist_src_version: "deployment/test"
8+ # Location for the repo
9+ reductionist_repo_location: "{{ ansible_facts.env.HOME }}/reductionist-rs"
10+ # Whether to clone and checkout,
11+ # use this to disable the checkout and use an existing repo with local modifications.
12+ reductionist_clone_repo: "true"
813# Container name.
914reductionist_name: "reductionist"
1015# Container image name.
@@ -19,10 +24,10 @@ reductionist_networks:
1924reductionist_env:
2025  OTEL_EXPORTER_JAEGER_AGENT_HOST: "{{ hostvars[(groups['jaeger'] | default([]) + [inventory_hostname])[0]].ansible_facts.default_ipv4.address }}"
2126  REDUCTIONIST_ENABLE_JAEGER: "{{ (groups['jaeger'] | default([]) | length > 0) | string | lower }}"
22-   REDUCTIONIST_HTTPS: "true "
23-   REDUCTIONIST_PORT: "8081 "
27+   REDUCTIONIST_HTTPS: "false "
28+   REDUCTIONIST_PORT: "8080 "
2429  REDUCTIONIST_USE_CHUNK_CACHE: "true"
25-   REDUCTIONIST_CHUNK_CACHE_PATH: "/mnt/localdisk/mnorton/ "
30+   REDUCTIONIST_CHUNK_CACHE_PATH: "/cache "
2631  REDUCTIONIST_CHUNK_CACHE_AGE: "86400"
2732  REDUCTIONIST_CHUNK_CACHE_PRUNE_INTERVAL: "3600"
2833  REDUCTIONIST_CHUNK_CACHE_SIZE_LIMIT: "10GB"
@@ -31,9 +36,14 @@ reductionist_env:
3136reductionist_remote_certs_path: "{{ ansible_facts.env.HOME }}/certs"
3237# Path to certificates directory in container.
3338reductionist_container_certs_path: "/root/.config/reductionist/certs"
39+ # Path to cache directory on remote host.
40+ reductionist_remote_cache_path: "{{ ansible_facts.env.HOME }}/cache"
41+ # Path to certificates directory in container.
42+ reductionist_container_cache_path: "/cache"
3443# List of container volume mounts.
3544reductionist_volumes:
3645  - "{{ reductionist_remote_certs_path }}:{{ reductionist_container_certs_path }}"
46+   - "{{ reductionist_remote_cache_path }}:{{ reductionist_container_cache_path }}"
3747# Host on which HAProxy frontend is exposed.
3848reductionist_host: "{{ hostvars[groups['haproxy'][0]].ansible_facts.default_ipv4.address }}"
3949# Certificate validity.
0 commit comments