Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
8 changes: 8 additions & 0 deletions .github/resources/adhoc-benchmark-docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
services:
deephaven:
image: ${DOCKER_IMG}
security_opt:
- apparmor:unconfined
Comment thread
stanbrub marked this conversation as resolved.
ports:
- "${DEEPHAVEN_PORT:-10000}:10000"
volumes:
Expand All @@ -10,6 +12,8 @@ services:
- "START_OPTS=-DAuthHandlers=io.deephaven.auth.AnonymousAuthenticationHandler ${CONFIG_OPTS}"

redpanda:
security_opt:
- apparmor:unconfined
command:
- redpanda
- start
Expand All @@ -33,6 +37,8 @@ services:
- 29092:29092

minio-server:
security_opt:
- apparmor:unconfined
image: minio/minio:RELEASE.2025-09-07T16-13-09Z
command: server /minio --console-address ":9001"
hostname: minio
Expand All @@ -59,6 +65,8 @@ services:
- ./minio:/minio

minio-bucket:
security_opt:
- apparmor:unconfined
image: minio/mc:RELEASE.2025-08-13T08-35-41Z
depends_on:
- minio-server
Expand Down
4 changes: 4 additions & 0 deletions .github/resources/compare-benchmark-docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
services:
deephaven:
image: ${DOCKER_IMG}
security_opt:
- apparmor:unconfined
Comment thread
stanbrub marked this conversation as resolved.
ports:
- "${DEEPHAVEN_PORT:-10000}:10000"
volumes:
Expand All @@ -9,6 +11,8 @@ services:
- "START_OPTS=-Xmx24g -DAuthHandlers=io.deephaven.auth.AnonymousAuthenticationHandler"

redpanda:
security_opt:
- apparmor:unconfined
command:
- redpanda
- start
Expand Down
4 changes: 4 additions & 0 deletions .github/resources/integration-docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
services:
deephaven:
image: ghcr.io/deephaven/server:edge
security_opt:
- apparmor:unconfined
Comment thread
stanbrub marked this conversation as resolved.
ports:
- "${DEEPHAVEN_PORT:-10000}:10000"
volumes:
Expand All @@ -9,6 +11,8 @@ services:
- "START_OPTS=-Xmx4g -DAuthHandlers=io.deephaven.auth.AnonymousAuthenticationHandler"

redpanda:
security_opt:
- apparmor:unconfined
command:
- redpanda
- start
Expand Down
8 changes: 8 additions & 0 deletions .github/resources/nightly-benchmark-docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
services:
deephaven:
image: ghcr.io/deephaven/server:edge
security_opt:
- apparmor:unconfined
Comment thread
stanbrub marked this conversation as resolved.
ports:
- "${DEEPHAVEN_PORT:-10000}:10000"
volumes:
Expand All @@ -10,6 +12,8 @@ services:
- "START_OPTS=-Xmx24g -DAuthHandlers=io.deephaven.auth.AnonymousAuthenticationHandler"

redpanda:
security_opt:
- apparmor:unconfined
command:
- redpanda
- start
Expand All @@ -33,6 +37,8 @@ services:
- 29092:29092

minio-server:
security_opt:
- apparmor:unconfined
image: minio/minio:RELEASE.2025-09-07T16-13-09Z
command: server /minio --console-address ":9001"
hostname: minio
Expand All @@ -59,6 +65,8 @@ services:
- ./minio:/minio

minio-bucket:
security_opt:
- apparmor:unconfined
image: minio/mc:RELEASE.2025-08-13T08-35-41Z
depends_on:
- minio-server
Expand Down
8 changes: 8 additions & 0 deletions .github/resources/release-benchmark-docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
services:
deephaven:
image: ${DOCKER_IMG}
security_opt:
- apparmor:unconfined
Comment thread
stanbrub marked this conversation as resolved.
ports:
- "${DEEPHAVEN_PORT:-10000}:10000"
volumes:
Expand All @@ -10,6 +12,8 @@ services:
- "START_OPTS=-Xmx24g -DAuthHandlers=io.deephaven.auth.AnonymousAuthenticationHandler"

redpanda:
security_opt:
- apparmor:unconfined
command:
- redpanda
- start
Expand All @@ -33,6 +37,8 @@ services:
- 29092:29092

minio-server:
security_opt:
- apparmor:unconfined
image: minio/minio:RELEASE.2025-09-07T16-13-09Z
command: server /minio --console-address ":9001"
hostname: minio
Expand All @@ -59,6 +65,8 @@ services:
- ./minio:/minio

minio-bucket:
security_opt:
- apparmor:unconfined
image: minio/mc:RELEASE.2025-08-13T08-35-41Z
depends_on:
- minio-server
Expand Down
5 changes: 5 additions & 0 deletions .github/scripts/setup-test-server-remote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ APT::Periodic::Update-Package-Lists "0";
APT::Periodic::Unattended-Upgrade "0";
EOF

title "-- Disable AppArmor --"
sudo systemctl disable --now apparmor 2>/dev/null || true
sudo systemctl mask apparmor 2>/dev/null || true
sudo aa-teardown 2>/dev/null || true

title "-- Disabling ASLR for Current Session --"
sudo sysctl -w kernel.randomize_va_space=0 >/dev/null

Expand Down
Loading