aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/topo-containers/single.yaml
blob: b6970c517bd76ad5a44c4c46c30761feb2a06988 (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
39
40
41
42
43
44
45
46
47
---
volumes:
  - volume: &shared-vol
      host-dir: "$HST_VOLUME_DIR/shared-vol"

containers:
  - name: "vpp"
    volumes:
      - <<: *shared-vol
        container-dir: "/tmp/vpp"
        is-default-work-dir: true

  - name: "nginx"
    volumes:
      - <<: *shared-vol
        container-dir: "/tmp/nginx"
        is-default-work-dir: true
    image: "hs-test/nginx-ldp"
    is-optional: true

  - name: "nginx-http3"
    volumes:
      - <<: *shared-vol
        container-dir: "/tmp/nginx"
        is-default-work-dir: true
      - host-dir: $HST_DIR/resources/cert
        container-dir: "/etc/nginx/ssl"
    image: "hs-test/nginx-http3"
    is-optional: true

  - name: "ab"
    image: "jordi/ab"
    is-optional: true
    run-detached: false

  - name: "wrk"
    image: "skandyla/wrk"
    is-optional: true
    run-detached: false

  - name: "curl"
    vars:
    - name: LD_LIBRARY_PATH
      value: "/usr/local/lib"
    image: "hs-test/curl"
    is-optional: true
    run-detached: false