aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/envoy
diff options
context:
space:
mode:
authorFilip Tehlar <ftehlar@cisco.com>2023-01-16 10:21:29 +0100
committerFlorin Coras <florin.coras@gmail.com>2023-01-16 20:51:09 +0000
commitf34f32f31925cba0ed8ef034184e0de1c7398487 (patch)
tree36695e68a76b240f70914dd3a3100971c7a3c2b5 /extras/hs-test/envoy
parent3f951433b89df4639bb2ae8f297aee90c70cebf5 (diff)
hs-test: better directory structure
Move config files to resources and docker files to separate directory Type: test Signed-off-by: Filip Tehlar <ftehlar@cisco.com> Change-Id: I24dd0705c4a463c06de525f28cb54d882527320a
Diffstat (limited to 'extras/hs-test/envoy')
-rw-r--r--extras/hs-test/envoy/envoy.log0
-rw-r--r--extras/hs-test/envoy/proxy.yaml52
-rw-r--r--extras/hs-test/envoy/vcl.conf7
3 files changed, 0 insertions, 59 deletions
diff --git a/extras/hs-test/envoy/envoy.log b/extras/hs-test/envoy/envoy.log
deleted file mode 100644
index e69de29bb2d..00000000000
--- a/extras/hs-test/envoy/envoy.log
+++ /dev/null
diff --git a/extras/hs-test/envoy/proxy.yaml b/extras/hs-test/envoy/proxy.yaml
deleted file mode 100644
index e4a5b81ff65..00000000000
--- a/extras/hs-test/envoy/proxy.yaml
+++ /dev/null
@@ -1,52 +0,0 @@
-admin:
- access_log_path: /tmp/envoy.log
- address:
- socket_address:
- address: 0.0.0.0
- port_value: 8081
-static_resources:
- listeners:
- # define a reverse proxy on :10001 that always uses :80 as an origin.
- - address:
- socket_address:
- protocol: TCP
- address: 0.0.0.0
- port_value: 555
- filter_chains:
- - filters:
- - name: envoy.filters.network.http_connection_manager
- typed_config:
- "@type": type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager
- stat_prefix: ingress_http
- route_config:
- name: local_route
- virtual_hosts:
- - name: service
- domains: ["*"]
- routes:
- - match:
- prefix: "/"
- route:
- cluster: proxy_service
- http_filters:
- - name: envoy.filters.http.router
- clusters:
- - name: proxy_service
- connect_timeout: 0.25s
- type: LOGICAL_DNS
- dns_lookup_family: V4_ONLY
- lb_policy: ROUND_ROBIN
- load_assignment:
- cluster_name: proxy_service
- endpoints:
- - lb_endpoints:
- - endpoint:
- address:
- socket_address:
- address: 10.0.1.1
- port_value: 666
-bootstrap_extensions:
- - name: envoy.extensions.vcl.vcl_socket_interface
- typed_config:
- "@type": type.googleapis.com/envoy.extensions.vcl.v3alpha.VclSocketInterface
-default_socket_interface: "envoy.extensions.vcl.vcl_socket_interface"
diff --git a/extras/hs-test/envoy/vcl.conf b/extras/hs-test/envoy/vcl.conf
deleted file mode 100644
index 164435a6ae5..00000000000
--- a/extras/hs-test/envoy/vcl.conf
+++ /dev/null
@@ -1,7 +0,0 @@
-vcl {
- rx-fifo-size 400000
- tx-fifo-size 400000
- app-scope-global
- use-mq-eventfd
- app-socket-api /tmp/vpp-envoy/var/run/app_ns_sockets/default
-}