Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 86ac367

Browse files
Fixing bad e2e compose file, using invalid variable substitution.
Signed-off-by: Silvin Lubecki <[email protected]>
1 parent 1fa3123 commit 86ac367

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

e2e/testdata/attachments.dockerapp/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ services:
1616
deploy:
1717
resources:
1818
limits:
19-
memory: $memory
19+
memory: ${memory}
2020
healthcheck:
2121
test: ["/ping", "debug"]
2222
interval: 2m
23-
timeout: $timeout
23+
timeout: ${timeout}
2424
monitor:
2525
image: busybox:latest
2626
command: monitor --source ${app.name}-${app.version} $$dollar

e2e/testdata/attachments.dockerapp/parameters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ tty: true
88
aport: 10000
99
sport: 11000
1010
dport: 12000
11-
memory: '100000000'
11+
memory: "100000000"
1212
timeout: 10s

0 commit comments

Comments
 (0)