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

services.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: 6761a603a0a0c8ffb2cc26470311dd1e861ee816 (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_services:
  services:

without_name:
  services:
    - alias: db-postgres
      entrypoint: ["/usr/local/bin/db-postgres"]
      command: ["start"]

invalid_entrypoint:
  services:
    - name: my-postgres:11.7
      alias: db-postgres
      entrypoint: "/usr/local/bin/db-postgres" # must be array

empty_entrypoint:
  services:
    - name: my-postgres:11.7
      alias: db-postgres
      entrypoint: []

invalid_command:
  services:
    - name: my-postgres:11.7
      alias: db-postgres
      command: "start" # must be array

empty_command:
  services:
    - name: my-postgres:11.7
      alias: db-postgres
      command: []

empty_pull_policy:
  script: echo "Multiple pull policies."
  services:
    - name: postgres:11.6
      pull_policy: []