Skip to content
Snippets Groups Projects
Commit bc3a3ab8 authored by Mikhail Karnevskiy's avatar Mikhail Karnevskiy
Browse files

Run envoy to test monitoring

parent bc0f24bf
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ test-services-linux-debug:
- cd $CI_PROJECT_DIR
- bash $CI_PROJECT_DIR/deploy/build_env/services-linux/run_asapo.sh
- cd $CI_PROJECT_DIR/build
- ctest --no-compress-output -T Test -L all -E "full_chain_monitoring|noaccess|restart|logger_fluentd" --output-on-failure --output-junit testResult.xml
- ctest --no-compress-output -T Test -L all -E "noaccess|restart|logger_fluentd" --output-on-failure --output-junit testResult.xml
tags:
- kubernetes-executor
rules:
......
......@@ -7,6 +7,11 @@ cp build/monitoring/monitoring_server/asapo-monitoring-server /asapo-monitoring-
cp deploy/asapo_services_light/*json /
cp deploy/asapo_services_light/envoy.yaml /
wget https://github.com/envoyproxy/envoy/releases/download/v1.27.0/envoy-1.27.0-linux-x86_64
cp envoy-1.27.0-linux-x86_64 /usr/bin/envoy
# Several receiver configs (tcp and fabric) are required for tests
cp deploy/asapo_services_light/receiver.json /receiver_tcp.json
cp deploy/build_env/services-linux/receiver_fabric.json /
......
......@@ -86,3 +86,10 @@ stderr_logfile=/tmp/consul_err.log
stderr_logfile_maxbytes = 0
stdout_logfile=/tmp/consul_out.log
stdout_logfile_maxbytes = 0
[program:envoyproxy]
command=envoy -c /envoy.yaml
stderr_logfile=/tmp/envoy_err.log
stderr_logfile_maxbytes = 0
stdout_logfile=/tmp/envoy_out.log
stdout_logfile_maxbytes = 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment