diff options
author | Maros Ondrejicka <mondreji@cisco.com> | 2023-02-27 13:22:45 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2023-02-28 18:27:17 +0000 |
commit | c2f76f4590f57729d1bcf03bd816c10991431b18 (patch) | |
tree | 9ab0273c87c3f5ba21cf0ee8277f60f73e95f762 /extras/hs-test/topo-containers | |
parent | b0116a13dcc631d5128209dec867c3fb5209629d (diff) |
hs-test: test vpp+nginx mirroring with tap ifaces
Type: test
Signed-off-by: Maros Ondrejicka <mondreji@cisco.com>
Change-Id: I05bbed8fd9d40929f040574044aed5292a475e91
Diffstat (limited to 'extras/hs-test/topo-containers')
-rw-r--r-- | extras/hs-test/topo-containers/nginxProxyAndServer.yaml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/extras/hs-test/topo-containers/nginxProxyAndServer.yaml b/extras/hs-test/topo-containers/nginxProxyAndServer.yaml new file mode 100644 index 00000000000..bac6a2df174 --- /dev/null +++ b/extras/hs-test/topo-containers/nginxProxyAndServer.yaml @@ -0,0 +1,20 @@ +--- +volumes: + - volume: &shared-vol-proxy + host-dir: /tmp/shared-vol-proxy + +containers: + - name: "vpp-proxy" + volumes: + - <<: *shared-vol-proxy + container-dir: "/tmp/vpp" + is-default-work-dir: true + - name: "nginx-proxy" + volumes: + - <<: *shared-vol-proxy + container-dir: "/tmp/nginx" + is-default-work-dir: true + image: "hs-test/nginx-ldp" + is-optional: true + - name: "nginx-server" + image: "hs-test/nginx-server" |