From: garciadeblas Date: Fri, 13 Aug 2021 15:17:35 +0000 (+0200) Subject: Add env variable to define location of OSM private key to access OSM instance X-Git-Tag: v10.1.1-rc1~21 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F00%2F11200%2F1;p=osm%2Ftests.git Add env variable to define location of OSM private key to access OSM instance Some of the tests require access to OSM instance in order to run some commands from there. Those commands could be run using ssh, but a private key is required to be able connect to that OSM instance. This change adds an env variable to define the location of the private key to access OSM instance. That env variable should be used by the tests requiring access to OSM instance via ssh to run commnads. Change-Id: Ifb25406d3145f6af862f071cb6bfb90ef0513e7f Signed-off-by: garciadeblas --- diff --git a/docker/Dockerfile b/docker/Dockerfile index cc484bd..a0740ff 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -70,6 +70,9 @@ ENV K8S_CREDENTIALS=/root/.kube/config # Juju data folder ENV JUJU_DATA=/root/.local/share/juju +# OSM RSA file +ENV OSM_RSA_FILE=/root/osm_id_rsa + ENV LC_ALL=C.UTF-8 ENV LANG=C.UTF-8