diff --git a/lib/schema_checker.py b/lib/schema_checker.py index f0a70fb85..3905228e0 100644 --- a/lib/schema_checker.py +++ b/lib/schema_checker.py @@ -57,12 +57,6 @@ def validate_compose_include(self, value): return value - def valid_service_types(self, value): - if value != 'container': - raise SchemaError(f"{value} is not 'container'") - return value - - def validate_networks_no_invalid_chars(self, value): if isinstance(value, list): for item in value: @@ -105,7 +99,6 @@ def check_usage_scenario(self, usage_scenario): Optional('restart'): str, # is part of compose. we ignore it as GMT has own orchestration Optional('expose'): [str, int], # is part of compose. we ignore it as it is non functionaly anyway Optional('init'): bool, - Optional('type'): Use(self.valid_service_types), Optional('image'): And(str, Use(self.not_empty)), Optional('build'): Or( And(str, Use(self.not_empty)), diff --git a/tests/data/bare-metal/usage_scenario.yml b/tests/data/bare-metal/usage_scenario.yml index 23a8c6372..0b1a3849b 100644 --- a/tests/data/bare-metal/usage_scenario.yml +++ b/tests/data/bare-metal/usage_scenario.yml @@ -6,7 +6,6 @@ description: Run GMT Tests inside systemd and DinD compatible sysbox-runc contai services: ubuntu-systemd-docker: - type: container image: greencoding/ubuntu-systemd-docker flow: diff --git a/tests/data/bare-metal/usage_scenario_enterprise.yml b/tests/data/bare-metal/usage_scenario_enterprise.yml index 11046f061..619564ea9 100644 --- a/tests/data/bare-metal/usage_scenario_enterprise.yml +++ b/tests/data/bare-metal/usage_scenario_enterprise.yml @@ -6,7 +6,6 @@ description: Run GMT Tests inside systemd and DinD compatible sysbox-runc contai services: ubuntu-systemd-docker: - type: container image: greencoding/ubuntu-systemd-docker flow: diff --git a/tests/data/metrics/README.md b/tests/data/metrics/README.md index 3403e7283..9275d84bf 100644 --- a/tests/data/metrics/README.md +++ b/tests/data/metrics/README.md @@ -10,13 +10,11 @@ description: test services: test-container: - type: container image: alpine setup-commands: - command: apk add stress-ng net-container: - type: container image: alpine setup-commands: - command: apk add curl diff --git a/tests/data/stress-application/usage_scenario.yml b/tests/data/stress-application/usage_scenario.yml index 0cbe010e3..20afd4399 100644 --- a/tests/data/stress-application/usage_scenario.yml +++ b/tests/data/stress-application/usage_scenario.yml @@ -15,7 +15,6 @@ networks: services: ubuntu-stress: - type: container image: gcb_stress networks: - network-for-pytests @@ -24,7 +23,6 @@ services: dockerfile: Dockerfile ubuntu-stress-2: - type: container image: gcb_stress # this will reuse the image earlier built networks: - network-for-pytests diff --git a/tests/data/usage_scenarios/basic_stress.yml b/tests/data/usage_scenarios/basic_stress.yml index 2b3b66000..6337b878a 100644 --- a/tests/data/usage_scenarios/basic_stress.yml +++ b/tests/data/usage_scenarios/basic_stress.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/basic_stress_with_variables.yml b/tests/data/usage_scenarios/basic_stress_with_variables.yml index 7e4d7b869..ac56be378 100644 --- a/tests/data/usage_scenarios/basic_stress_with_variables.yml +++ b/tests/data/usage_scenarios/basic_stress_with_variables.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/capture_logs.yml b/tests/data/usage_scenarios/capture_logs.yml index cfa272002..1595b86e9 100644 --- a/tests/data/usage_scenarios/capture_logs.yml +++ b/tests/data/usage_scenarios/capture_logs.yml @@ -5,7 +5,6 @@ description: Capture logs from stdout and sterr services: test-container: - type: container image: alpine setup-commands: - command: echo "Test log from setup-commands" diff --git a/tests/data/usage_scenarios/capture_logs_with_invalid_character.yml b/tests/data/usage_scenarios/capture_logs_with_invalid_character.yml index 9b63ff5e8..4be08469e 100644 --- a/tests/data/usage_scenarios/capture_logs_with_invalid_character.yml +++ b/tests/data/usage_scenarios/capture_logs_with_invalid_character.yml @@ -5,7 +5,6 @@ description: Test handling of invalid UTF-8 character in log output services: test-container: - type: container image: alpine setup-commands: - command: 'printf "Setup log with invalid UTF-8 character: \xff embedded\n"' diff --git a/tests/data/usage_scenarios/capture_logs_with_null_bytes.yml b/tests/data/usage_scenarios/capture_logs_with_null_bytes.yml index 0cd2dfeec..2611b2765 100644 --- a/tests/data/usage_scenarios/capture_logs_with_null_bytes.yml +++ b/tests/data/usage_scenarios/capture_logs_with_null_bytes.yml @@ -5,7 +5,6 @@ description: Test handling of null bytes in log output services: test-container: - type: container image: alpine setup-commands: - command: 'printf "Setup log with null byte: \x00 embedded\n"' diff --git a/tests/data/usage_scenarios/cmd_stress.yml b/tests/data/usage_scenarios/cmd_stress.yml index 16cdd2226..3e1ea13ba 100644 --- a/tests/data/usage_scenarios/cmd_stress.yml +++ b/tests/data/usage_scenarios/cmd_stress.yml @@ -6,7 +6,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/dependency_collection.yml b/tests/data/usage_scenarios/dependency_collection.yml index ec164650a..e0e2e626a 100644 --- a/tests/data/usage_scenarios/dependency_collection.yml +++ b/tests/data/usage_scenarios/dependency_collection.yml @@ -5,7 +5,6 @@ description: Test Dependency Resolving services: test-container: - type: container image: greencoding/gcb_playwright:v20 setup-commands: - shell: bash diff --git a/tests/data/usage_scenarios/entrypoint_empty.yml b/tests/data/usage_scenarios/entrypoint_empty.yml index 17d0d0351..34e965626 100644 --- a/tests/data/usage_scenarios/entrypoint_empty.yml +++ b/tests/data/usage_scenarios/entrypoint_empty.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress_entrypoint # image with an endpoint build: context: ../entrypoint-application diff --git a/tests/data/usage_scenarios/entrypoint_script.yml b/tests/data/usage_scenarios/entrypoint_script.yml index b251cd20c..4a4b88e8f 100644 --- a/tests/data/usage_scenarios/entrypoint_script.yml +++ b/tests/data/usage_scenarios/entrypoint_script.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress_entrypoint # image with an endpoint build: context: ../entrypoint-application diff --git a/tests/data/usage_scenarios/entrypoint_with_command.yml b/tests/data/usage_scenarios/entrypoint_with_command.yml index 4c639389e..f305e9c02 100644 --- a/tests/data/usage_scenarios/entrypoint_with_command.yml +++ b/tests/data/usage_scenarios/entrypoint_with_command.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress_entrypoint # image with an endpoint build: context: ../entrypoint-application diff --git a/tests/data/usage_scenarios/env_vars_stress_allowed.yml b/tests/data/usage_scenarios/env_vars_stress_allowed.yml index 418689c87..3f2f0f702 100644 --- a/tests/data/usage_scenarios/env_vars_stress_allowed.yml +++ b/tests/data/usage_scenarios/env_vars_stress_allowed.yml @@ -6,7 +6,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/env_vars_stress_forbidden.yml b/tests/data/usage_scenarios/env_vars_stress_forbidden.yml index 3af7f144c..ee772143d 100644 --- a/tests/data/usage_scenarios/env_vars_stress_forbidden.yml +++ b/tests/data/usage_scenarios/env_vars_stress_forbidden.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/import_one_services.yml b/tests/data/usage_scenarios/import_one_services.yml index d79383f09..ec3c01f2b 100644 --- a/tests/data/usage_scenarios/import_one_services.yml +++ b/tests/data/usage_scenarios/import_one_services.yml @@ -1,2 +1 @@ test-container: - type: container diff --git a/tests/data/usage_scenarios/internal_network.yml b/tests/data/usage_scenarios/internal_network.yml index 6a4276f86..36577771a 100644 --- a/tests/data/usage_scenarios/internal_network.yml +++ b/tests/data/usage_scenarios/internal_network.yml @@ -9,7 +9,6 @@ networks: services: test-container: - type: container image: alpine/curl networks: - gmt-test-network diff --git a/tests/data/usage_scenarios/labels_stress_allowed.yml b/tests/data/usage_scenarios/labels_stress_allowed.yml index acdf3dcda..cf2e538d0 100644 --- a/tests/data/usage_scenarios/labels_stress_allowed.yml +++ b/tests/data/usage_scenarios/labels_stress_allowed.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/labels_stress_forbidden.yml b/tests/data/usage_scenarios/labels_stress_forbidden.yml index 929c56a78..1bd021cb1 100644 --- a/tests/data/usage_scenarios/labels_stress_forbidden.yml +++ b/tests/data/usage_scenarios/labels_stress_forbidden.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/metric_providers_data.yml b/tests/data/usage_scenarios/metric_providers_data.yml index aca66bd34..005564086 100644 --- a/tests/data/usage_scenarios/metric_providers_data.yml +++ b/tests/data/usage_scenarios/metric_providers_data.yml @@ -9,7 +9,6 @@ services: command: sh stress-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/network_alias.yml b/tests/data/usage_scenarios/network_alias.yml index a292ae164..fd766f211 100644 --- a/tests/data/usage_scenarios/network_alias.yml +++ b/tests/data/usage_scenarios/network_alias.yml @@ -8,7 +8,6 @@ networks: services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/network_host_create.yml b/tests/data/usage_scenarios/network_host_create.yml index 0bbc766cd..b941703c0 100644 --- a/tests/data/usage_scenarios/network_host_create.yml +++ b/tests/data/usage_scenarios/network_host_create.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/network_host_join.yml b/tests/data/usage_scenarios/network_host_join.yml index 1bbd01eaf..b51a02b7e 100644 --- a/tests/data/usage_scenarios/network_host_join.yml +++ b/tests/data/usage_scenarios/network_host_join.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/network_stress.yml b/tests/data/usage_scenarios/network_stress.yml index 45ab9ec82..d8aa7c7db 100644 --- a/tests/data/usage_scenarios/network_stress.yml +++ b/tests/data/usage_scenarios/network_stress.yml @@ -9,7 +9,6 @@ networks: services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/noop.yml b/tests/data/usage_scenarios/noop.yml index 054547373..1699ce573 100644 --- a/tests/data/usage_scenarios/noop.yml +++ b/tests/data/usage_scenarios/noop.yml @@ -5,7 +5,6 @@ description: Testing Noop services: test-container: - type: container image: alpine flow: diff --git a/tests/data/usage_scenarios/port_bindings_stress.yml b/tests/data/usage_scenarios/port_bindings_stress.yml index 74dd1dd7a..a3804dfae 100644 --- a/tests/data/usage_scenarios/port_bindings_stress.yml +++ b/tests/data/usage_scenarios/port_bindings_stress.yml @@ -6,7 +6,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/resource_limits_cpu_none.yml b/tests/data/usage_scenarios/resource_limits_cpu_none.yml index f246241e5..3d9ff26fe 100644 --- a/tests/data/usage_scenarios/resource_limits_cpu_none.yml +++ b/tests/data/usage_scenarios/resource_limits_cpu_none.yml @@ -6,7 +6,6 @@ description: test services: test-container-memory-int: - type: container image: alpine cpus: null diff --git a/tests/data/usage_scenarios/resource_limits_disalign_cpu.yml b/tests/data/usage_scenarios/resource_limits_disalign_cpu.yml index d0573f3c6..3a0968daf 100644 --- a/tests/data/usage_scenarios/resource_limits_disalign_cpu.yml +++ b/tests/data/usage_scenarios/resource_limits_disalign_cpu.yml @@ -6,7 +6,6 @@ description: test services: test-container-memory-int: - type: container image: alpine deploy: resources: diff --git a/tests/data/usage_scenarios/resource_limits_disalign_memory.yml b/tests/data/usage_scenarios/resource_limits_disalign_memory.yml index b00cb250c..16cfe04ef 100644 --- a/tests/data/usage_scenarios/resource_limits_disalign_memory.yml +++ b/tests/data/usage_scenarios/resource_limits_disalign_memory.yml @@ -6,7 +6,6 @@ description: test services: test-container-memory-int: - type: container image: alpine deploy: resources: diff --git a/tests/data/usage_scenarios/resource_limits_good.yml b/tests/data/usage_scenarios/resource_limits_good.yml index f6c6c147a..c536c2267 100644 --- a/tests/data/usage_scenarios/resource_limits_good.yml +++ b/tests/data/usage_scenarios/resource_limits_good.yml @@ -5,7 +5,6 @@ description: test services: test-container-only-cpu: - type: container image: alpine deploy: resources: @@ -13,7 +12,6 @@ services: cpus: "1.2" test-container-only-memory: - type: container image: alpine deploy: resources: @@ -21,7 +19,6 @@ services: memory: "100MB" test-container-both: - type: container image: alpine deploy: resources: @@ -30,7 +27,6 @@ services: memory: "10M" test-container-cpu-float: - type: container image: alpine deploy: resources: @@ -39,7 +35,6 @@ services: memory: "10M" test-container-cpu-int: - type: container image: alpine deploy: resources: @@ -48,7 +43,6 @@ services: memory: "10M" test-container-memory-int: - type: container image: alpine deploy: resources: @@ -58,7 +52,6 @@ services: test-container-memory-float: - type: container image: alpine deploy: resources: @@ -67,12 +60,10 @@ services: memory: 10000001.23 test-container-limits-partial: - type: container image: alpine deploy: # allowed to be None test-container-cpu-and-memory-in-both: - type: container image: alpine deploy: resources: @@ -83,20 +74,17 @@ services: mem_limit: "10M" test-container-limit-only-service-level: - type: container image: alpine cpus: 1 mem_limit: "10M" test-container-limit-only-service-level-memory-int: - type: container image: alpine cpus: 1 mem_limit: 11000000 test-container-limit-only-service-level-memory-float: - type: container image: alpine cpus: 1 mem_limit: 10000001.23 diff --git a/tests/data/usage_scenarios/resource_limits_memory_float.yml b/tests/data/usage_scenarios/resource_limits_memory_float.yml index 7b6f694b9..7e4498918 100644 --- a/tests/data/usage_scenarios/resource_limits_memory_float.yml +++ b/tests/data/usage_scenarios/resource_limits_memory_float.yml @@ -6,7 +6,6 @@ description: test services: test-container-memory-int: - type: container image: alpine deploy: resources: diff --git a/tests/data/usage_scenarios/resource_limits_memory_none.yml b/tests/data/usage_scenarios/resource_limits_memory_none.yml index 264fe2a3b..465974b2b 100644 --- a/tests/data/usage_scenarios/resource_limits_memory_none.yml +++ b/tests/data/usage_scenarios/resource_limits_memory_none.yml @@ -6,7 +6,6 @@ description: test services: test-container-memory-int: - type: container image: alpine deploy: resources: diff --git a/tests/data/usage_scenarios/resource_limits_shm_good.yml b/tests/data/usage_scenarios/resource_limits_shm_good.yml index af8644a49..ceef3bc3d 100644 --- a/tests/data/usage_scenarios/resource_limits_shm_good.yml +++ b/tests/data/usage_scenarios/resource_limits_shm_good.yml @@ -5,7 +5,6 @@ description: Testing SHM services: test-container: - type: container image: alpine deploy: resources: @@ -16,7 +15,6 @@ services: shm_size: "30MB" test-container-2: - type: container image: alpine deploy: resources: diff --git a/tests/data/usage_scenarios/runner_filename/basic_stress_1.yml b/tests/data/usage_scenarios/runner_filename/basic_stress_1.yml index 6d78161ef..84652f5d4 100644 --- a/tests/data/usage_scenarios/runner_filename/basic_stress_1.yml +++ b/tests/data/usage_scenarios/runner_filename/basic_stress_1.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../../stress-application diff --git a/tests/data/usage_scenarios/runner_filename/basic_stress_2.yml b/tests/data/usage_scenarios/runner_filename/basic_stress_2.yml index 6d78161ef..84652f5d4 100644 --- a/tests/data/usage_scenarios/runner_filename/basic_stress_2.yml +++ b/tests/data/usage_scenarios/runner_filename/basic_stress_2.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../../stress-application diff --git a/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_image_builds.yml b/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_image_builds.yml index 077674b2a..18713520d 100644 --- a/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_image_builds.yml +++ b/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_image_builds.yml @@ -8,7 +8,6 @@ networks: services: test-container: - type: container flow: - name: Stress diff --git a/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_missing_description.yml b/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_missing_description.yml index 3c062d130..7116f029c 100644 --- a/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_missing_description.yml +++ b/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_missing_description.yml @@ -7,7 +7,6 @@ networks: services: test-container: - type: container image: gcb_stress build: . diff --git a/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_network_alias.yml b/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_network_alias.yml index d4c4bd87e..13817d248 100644 --- a/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_network_alias.yml +++ b/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_network_alias.yml @@ -8,7 +8,6 @@ networks: services: test-container: - type: container image: gcb_stress networks: gmt-test-network: diff --git a/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_wrong_type.yml b/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_wrong_type.yml index 70e57c995..d6070a111 100644 --- a/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_wrong_type.yml +++ b/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_wrong_type.yml @@ -12,7 +12,6 @@ networks: services: test-container: - type: container image: gcb_stress build: . diff --git a/tests/data/usage_scenarios/schema_checker/schema_checker_valid.yml b/tests/data/usage_scenarios/schema_checker/schema_checker_valid.yml index 637e09837..5684378f2 100644 --- a/tests/data/usage_scenarios/schema_checker/schema_checker_valid.yml +++ b/tests/data/usage_scenarios/schema_checker/schema_checker_valid.yml @@ -9,11 +9,9 @@ networks: services: test-container: - type: container image: gcb_stress build: . test-container-2: - type: container image: fizzbump flow: diff --git a/tests/data/usage_scenarios/schema_checker/schema_checker_valid_labels_as_dict.yml b/tests/data/usage_scenarios/schema_checker/schema_checker_valid_labels_as_dict.yml index cbaba2077..7f502fd3a 100644 --- a/tests/data/usage_scenarios/schema_checker/schema_checker_valid_labels_as_dict.yml +++ b/tests/data/usage_scenarios/schema_checker/schema_checker_valid_labels_as_dict.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress labels: foo: bar diff --git a/tests/data/usage_scenarios/schema_checker/schema_checker_valid_labels_as_list.yml b/tests/data/usage_scenarios/schema_checker/schema_checker_valid_labels_as_list.yml index aed00152a..ca637f1e4 100644 --- a/tests/data/usage_scenarios/schema_checker/schema_checker_valid_labels_as_list.yml +++ b/tests/data/usage_scenarios/schema_checker/schema_checker_valid_labels_as_list.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress labels: - foo=bar diff --git a/tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_alias.yml b/tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_alias.yml index 83f59fb08..03e4e9b89 100644 --- a/tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_alias.yml +++ b/tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_alias.yml @@ -8,7 +8,6 @@ networks: services: test-container: - type: container image: gcb_stress networks: gmt-test-network: diff --git a/tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_as_keys.yml b/tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_as_keys.yml index e825275c7..ca3e80139 100644 --- a/tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_as_keys.yml +++ b/tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_as_keys.yml @@ -9,7 +9,6 @@ networks: services: test-container: - type: container image: gcb_stress build: . diff --git a/tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_as_list.yml b/tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_as_list.yml index 306ffa12d..fa6cc1e63 100644 --- a/tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_as_list.yml +++ b/tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_as_list.yml @@ -9,7 +9,6 @@ networks: services: test-container: - type: container image: gcb_stress build: . diff --git a/tests/data/usage_scenarios/setup_commands_multiple_noop.yml b/tests/data/usage_scenarios/setup_commands_multiple_noop.yml index a0bc5a197..b64db1c8c 100644 --- a/tests/data/usage_scenarios/setup_commands_multiple_noop.yml +++ b/tests/data/usage_scenarios/setup_commands_multiple_noop.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/setup_commands_noop.yml b/tests/data/usage_scenarios/setup_commands_noop.yml index 8508fcd14..fafcc3c6e 100644 --- a/tests/data/usage_scenarios/setup_commands_noop.yml +++ b/tests/data/usage_scenarios/setup_commands_noop.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/stress_detached_exit.yml b/tests/data/usage_scenarios/stress_detached_exit.yml index fac0a9f6d..fa020f5f1 100644 --- a/tests/data/usage_scenarios/stress_detached_exit.yml +++ b/tests/data/usage_scenarios/stress_detached_exit.yml @@ -6,7 +6,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/stress_detached_failure.yml b/tests/data/usage_scenarios/stress_detached_failure.yml index e83451e19..959b0f2a6 100644 --- a/tests/data/usage_scenarios/stress_detached_failure.yml +++ b/tests/data/usage_scenarios/stress_detached_failure.yml @@ -6,7 +6,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/stress_detached_no_exit.yml b/tests/data/usage_scenarios/stress_detached_no_exit.yml index a20c17b93..8ae19f068 100644 --- a/tests/data/usage_scenarios/stress_detached_no_exit.yml +++ b/tests/data/usage_scenarios/stress_detached_no_exit.yml @@ -6,7 +6,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/stress_sci.yml b/tests/data/usage_scenarios/stress_sci.yml index e6a08b4fe..3ef4485da 100644 --- a/tests/data/usage_scenarios/stress_sci.yml +++ b/tests/data/usage_scenarios/stress_sci.yml @@ -8,7 +8,6 @@ sci: services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/stress_sci_multi.yml b/tests/data/usage_scenarios/stress_sci_multi.yml index 71eb887ff..b60e97b7b 100644 --- a/tests/data/usage_scenarios/stress_sci_multi.yml +++ b/tests/data/usage_scenarios/stress_sci_multi.yml @@ -8,7 +8,6 @@ sci: services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/stress_with_named_volume.yml b/tests/data/usage_scenarios/stress_with_named_volume.yml index 422a500b1..bc8451a08 100644 --- a/tests/data/usage_scenarios/stress_with_named_volume.yml +++ b/tests/data/usage_scenarios/stress_with_named_volume.yml @@ -5,7 +5,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application diff --git a/tests/data/usage_scenarios/test_docker_compose_entrypoint.yml b/tests/data/usage_scenarios/test_docker_compose_entrypoint.yml index 2ad9188d3..aabf7b41e 100644 --- a/tests/data/usage_scenarios/test_docker_compose_entrypoint.yml +++ b/tests/data/usage_scenarios/test_docker_compose_entrypoint.yml @@ -7,7 +7,6 @@ compose-file: !include test_docker_entry_command.yml services: test-container: - type: container image: alpine flow: diff --git a/tests/data/usage_scenarios/volume_bindings_stress.yml b/tests/data/usage_scenarios/volume_bindings_stress.yml index 7d039ff80..2859578d8 100644 --- a/tests/data/usage_scenarios/volume_bindings_stress.yml +++ b/tests/data/usage_scenarios/volume_bindings_stress.yml @@ -6,7 +6,6 @@ description: test services: test-container: - type: container image: gcb_stress build: context: ../stress-application