Welcome to mirror list, hosted at ThFree Co, Russian Federation.

image.yml « negative_tests « yaml_tests « ci « schema « editor « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad37cd6c3bac8c6c6b9b56a90661ec4397744e09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
empty_image:
  image:

multi_image_array:
  image:
    - alpine:latest
    - ubuntu:latest

image_without_name:
  image:
    entrypoint: ["/bin/sh", "-c"]

image_with_invalid_entrypoint:
  image:
    name: my-postgres:11.7
    entrypoint: "/usr/local/bin/db-postgres" # must be array

image_with_empty_pull_policy:
  image:
    name: postgres:11.6
    pull_policy: []

invalid_image_platform:
  image:
    name: alpine:latest
    docker:
      platform: ["arm64"] # The expected value is a string, not an array

invalid_image_executor_opts:
  image:
    name: alpine:latest
    docker:
      unknown_key: test

image_with_empty_executor_opts:
  image:
    name: alpine:latest
    docker: