diff options
author | Krzysztof Gajewski <krzysztof.gajewski@nokia.com> | 2021-02-25 11:38:57 +0100 |
---|---|---|
committer | Krzysztof Gajewski <krzysztof.gajewski@nokia.com> | 2021-03-04 13:33:05 +0100 |
commit | b1b6fa12fc2923d73955d7b9935ff4293a0021c9 (patch) | |
tree | 9fc29967426b1e27a6f494b2db59242ed9fe80f2 /test/mocks/datafilecollector-testharness/simulator-group | |
parent | 30baa4a36a92d2766bd7e0c0ba38fac7ef6dfada (diff) |
Modify DFC HTTP mock to consume PNF-Simulator HTTP server
Issue-ID: DCAEGEN2-2536
Signed-off-by: Krzysztof Gajewski <krzysztof.gajewski@nokia.com>
Change-Id: I1737bc1d5d5558552afd32c93ca68d1143d36a89
Diffstat (limited to 'test/mocks/datafilecollector-testharness/simulator-group')
-rw-r--r-- | test/mocks/datafilecollector-testharness/simulator-group/docker-compose-template.yml | 20 | ||||
-rwxr-xr-x | test/mocks/datafilecollector-testharness/simulator-group/prepare-images.sh | 5 |
2 files changed, 10 insertions, 15 deletions
diff --git a/test/mocks/datafilecollector-testharness/simulator-group/docker-compose-template.yml b/test/mocks/datafilecollector-testharness/simulator-group/docker-compose-template.yml index 7193c6ce2..f23c85102 100644 --- a/test/mocks/datafilecollector-testharness/simulator-group/docker-compose-template.yml +++ b/test/mocks/datafilecollector-testharness/simulator-group/docker-compose-template.yml @@ -236,7 +236,7 @@ services: networks: - dfcnet container_name: dfc_http-https-server0 - image: http_https_httpd:latest + image: nexus3.onap.org:10001/onap/org.onap.integration.simulators.httpserver:1.0.5 ports: - "81:80" - "444:443" @@ -245,13 +245,13 @@ services: - "32101:32100" restart: on-failure volumes: - - ./../certservice/generated-certs/apache-pem:/usr/local/apache2/certs/:rw + - ./../certservice/generated-certs/apache-pem:/etc/apache2/certs/:rw http-https-server1: networks: - dfcnet container_name: dfc_http-https-server1 - image: http_https_httpd:latest + image: nexus3.onap.org:10001/onap/org.onap.integration.simulators.httpserver:1.0.5 ports: - "82:80" - "445:443" @@ -260,13 +260,13 @@ services: - "32102:32100" restart: on-failure volumes: - - ./../certservice/generated-certs/apache-pem:/usr/local/apache2/certs/:rw + - ./../certservice/generated-certs/apache-pem:/etc/apache2/certs/:rw http-https-server2: networks: - dfcnet container_name: dfc_http-https-server2 - image: http_https_httpd:latest + image: nexus3.onap.org:10001/onap/org.onap.integration.simulators.httpserver:1.0.5 ports: - "83:80" - "446:443" @@ -275,13 +275,13 @@ services: - "32103:32100" restart: on-failure volumes: - - ./../certservice/generated-certs/apache-pem:/usr/local/apache2/certs/:rw + - ./../certservice/generated-certs/apache-pem:/etc/apache2/certs/:rw http-https-server3: networks: - dfcnet container_name: dfc_http-https-server3 - image: http_https_httpd:latest + image: nexus3.onap.org:10001/onap/org.onap.integration.simulators.httpserver:1.0.5 ports: - "84:80" - "447:443" @@ -290,13 +290,13 @@ services: - "32104:32100" restart: on-failure volumes: - - ./../certservice/generated-certs/apache-pem:/usr/local/apache2/certs/:rw + - ./../certservice/generated-certs/apache-pem:/etc/apache2/certs/:rw http-https-server4: networks: - dfcnet container_name: dfc_http-https-server4 - image: http_https_httpd:latest + image: nexus3.onap.org:10001/onap/org.onap.integration.simulators.httpserver:1.0.5 ports: - "85:80" - "448:443" @@ -305,4 +305,4 @@ services: - "32105:32100" restart: on-failure volumes: - - ./../certservice/generated-certs/apache-pem:/usr/local/apache2/certs/:rw + - ./../certservice/generated-certs/apache-pem:/etc/apache2/certs/:rw diff --git a/test/mocks/datafilecollector-testharness/simulator-group/prepare-images.sh b/test/mocks/datafilecollector-testharness/simulator-group/prepare-images.sh index 0021eca5e..59ac1c7ac 100755 --- a/test/mocks/datafilecollector-testharness/simulator-group/prepare-images.sh +++ b/test/mocks/datafilecollector-testharness/simulator-group/prepare-images.sh @@ -25,8 +25,3 @@ docker build -t drsim_common:latest . cd ../ftpes-sftp-server docker build -t ftpes_vsftpd:latest -f Dockerfile-ftpes . - -#Build image for http server -cd ../http-https-server - -docker build -t http_https_httpd:latest -f Dockerfile-http-https . |