Skip to content
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
if: always()

- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: compliance-test
path: artifacts
Expand Down Expand Up @@ -148,8 +148,7 @@ jobs:
run: ansible-galaxy collection install -r deployment/requirements.yml

- name: Run Ansible playbook
# GitHub runner already has Docker installed.
run: ansible-playbook -i deployment/inventory deployment/site.yml --skip-tags docker
run: ansible-playbook -i deployment/inventory deployment/site.yml

- name: Install Python client dependencies
run: pip install -r scripts/requirements.txt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ reductionist_image: "ghcr.io/stackhpc/reductionist-rs"
reductionist_tag: "latest"
# List of container networks.
reductionist_networks:
- name: host
- host
# Container environment.
reductionist_env:
OTEL_EXPORTER_JAEGER_AGENT_HOST: "{{ hostvars[(groups['jaeger'] | default([]) + [inventory_hostname])[0]].ansible_facts.default_ipv4.address }}"
REDUCTIONIST_ENABLE_JAEGER: "{{ (groups['jaeger'] | default([]) | length > 0) | string | lower }}"
REDUCTIONIST_HTTPS: "true"
REDUCTIONIST_PORT: "8081"
# Path to certificates directory on remote host.
reductionist_remote_certs_path: "{{ ansible_facts.env.HOME }}/.config/reductionist/certs"
reductionist_remote_certs_path: "{{ ansible_facts.env.HOME }}/certs"
# Path to certificates directory in container.
reductionist_container_certs_path: "/root/.config/reductionist/certs"
# List of container volume mounts.
Expand Down
2 changes: 1 addition & 1 deletion deployment/group_vars/haproxy
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
# Global max connections.
haproxy_max_connections: 40000
haproxy_max_connections: 20000
# Number of threads.
haproxy_threads: 1
# Default max connections.
Expand Down
2 changes: 1 addition & 1 deletion deployment/inventory
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ localhost ansible_connection=local
reductionist

# Do not edit.
[docker:children]
[podman:children]
haproxy
jaeger
minio
Expand Down
2 changes: 1 addition & 1 deletion deployment/requirements.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
collections:
- community.docker
- containers.podman
Loading
Loading