diff options
-rw-r--r-- | Dockerfile | 2 | ||||
-rwxr-xr-x | bin/check_health.py | 4 | ||||
-rw-r--r-- | miss_htbt_service/config/config.yaml | 12 |
3 files changed, 3 insertions, 15 deletions
@@ -16,7 +16,7 @@ RUN mkdir /tmp/config #RUN echo 1234 > /tmp/config/coll_port.txt #RUN echo 4.5.6.7 > /tmp/config/pol_ip.txt #RUN echo 4567 > /tmp/config/pol_port.txt -EXPOSE 10000 +EXPOSE 10001 #ENV PYTHONPATH="/usr/local/lib/python3.6:/usr/local/lib/python3.6/site-packages:${PATH}" #ENV PYTHONPATH="/usr/local/lib/python3.6/site-packages:/usr/local/lib/python3.6" diff --git a/bin/check_health.py b/bin/check_health.py index 53e9da6..ae61881 100755 --- a/bin/check_health.py +++ b/bin/check_health.py @@ -61,6 +61,6 @@ class GetHandler(BaseHTTPRequestHandler): if __name__ == '__main__': from http.server import HTTPServer #from BaseHTTPServer import HTTPServer - server = HTTPServer(("", 10000), GetHandler) - print('Starting server at http://localhost:10000') + server = HTTPServer(("", 10001), GetHandler) + print('Starting server at http://localhost:10001') server.serve_forever() diff --git a/miss_htbt_service/config/config.yaml b/miss_htbt_service/config/config.yaml index bccf034..0dcc8bf 100644 --- a/miss_htbt_service/config/config.yaml +++ b/miss_htbt_service/config/config.yaml @@ -13,16 +13,4 @@ vnfs: - VESCOLL-VNFNJ-SECHEARTBEAT-OUTPUT - DCAE-POLICY-HILOTCA-EVENT-OUTPUT - ControlLoopEvent1 - vnfb: - - 3 - - 30 - - intopic1 - - outtopic1 - - ControlLoopEvent2 - vnfc: - - 3 - - 30 - - intopic2 - - outtopic2 - - ControlLoopEvent3 |