427b0163eb
Change-Id: I3bad13cc332fd439b3b56cfa5fc596255bc466f2
13 lines
327 B
Bash
Executable File
13 lines
327 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
export CHROMEDRIVER="${CHROMEDRIVER:="/etc/selenium/chromedriver"}"
|
|
export ARTIFACTS_DIR="${ARTIFACTS_DIR:="/tmp/artifacts/"}"
|
|
|
|
export GRAFANA_USER="admin"
|
|
export GRAFANA_PASSWORD="password"
|
|
export GRAFANA_URI="grafana.osh-infra.svc.cluster.local"
|
|
|
|
python3 $(readlink -f $(dirname $0))/grafanaSelenium.py
|