Skip to content

Commit c7f180a

Browse files
committed
Ignoring unsupported keys
1 parent 1493a40 commit c7f180a

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

drupal/usage_scenario.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ description: Drupal sample with pre-populated DB (pages and plugins) where a sim
55

66
compose-file: !include compose.yml
77

8+
ignore-unsupported-compose: True
9+
810
services:
911
drupal-mariadb:
1012
ports:

network-test/usage_scenario.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ description: Demonstrating the resource consumption of two containers communicat
55

66
compose-file: !include compose.yml
77

8+
ignore-unsupported-compose: True
9+
810

911
flow:
1012
- name: External-Network-Test

stress/usage_scenario.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,24 @@ description: A simple 5 seconds stress on the system with one core. Expected dis
55

66
compose-file: !include compose.yml
77

8+
services:
9+
gcb-alpine-stress:
10+
cpus: 1
11+
mem_limit: "6MB"
12+
13+
14+
815
flow:
16+
- name: Hide me
17+
container: gcb-alpine-stress
18+
commands:
19+
# Alpine does not have stress, so we use stress-ng
20+
# We need the -q flag because otherwise it will write debug to STDERR
21+
- type: console
22+
command: sleep 0
23+
note: Starting Stress
24+
25+
926
- name: Stress
1027
container: gcb-alpine-stress
1128
commands:
@@ -14,3 +31,13 @@ flow:
1431
- type: console
1532
command: stress-ng -c 1 -t 5 -q
1633
note: Starting Stress
34+
35+
- name: Hide me 2
36+
container: gcb-alpine-stress
37+
commands:
38+
# Alpine does not have stress, so we use stress-ng
39+
# We need the -q flag because otherwise it will write debug to STDERR
40+
- type: console
41+
command: sleep 0
42+
note: Starting Stress
43+

0 commit comments

Comments
 (0)