Added python3 and Updated netopeer image 76/103376/4
authorrajendrajaiswal <rajendra.jaiswal@ericsson.com>
Mon, 9 Mar 2020 15:41:41 +0000 (15:41 +0000)
committerMorgan Richomme <morgan.richomme@orange.com>
Thu, 12 Mar 2020 08:20:52 +0000 (08:20 +0000)
Change-Id: Ib7c21353cff267b847a4d1d7fdcb322e22772062
Issue-ID: INT-1312
Signed-off-by: rajendrajaiswal <rajendra.jaiswal@ericsson.com>
test/mocks/pmsh-pnf-sim/docker-compose/docker-compose.yml
test/mocks/pmsh-pnf-sim/docker-compose/requirements.txt [new file with mode: 0644]
test/mocks/pmsh-pnf-sim/docker-compose/schedulepmjob.py
test/mocks/pmsh-pnf-sim/docker-compose/subscriber.py [changed mode: 0644->0755]

index 58f2269..9553055 100644 (file)
@@ -2,14 +2,14 @@ version: '3'
 
 services:
   netopeer2:
-    image: registry.gitlab.com/blue-onap/docker/sysrepo-netopeer2:v0.7-r2-5
-    container_name: netopeer2
+    image: nexus3.onap.org:10001/onap/integration/simulators/netconf-pnp-simulator:2.6.1
+    container_name: netconf-pnp-pmsh
     restart: always
     ports:
       - "830:830"
       - "6513:6513"
     volumes:
-      - ./:/config/models/pnf-subscriptions
+      - ./:/config/modules/pnf-subscriptions
   sftp:
     container_name: sftpserver
     image: atmoz/sftp
diff --git a/test/mocks/pmsh-pnf-sim/docker-compose/requirements.txt b/test/mocks/pmsh-pnf-sim/docker-compose/requirements.txt
new file mode 100644 (file)
index 0000000..651d147
--- /dev/null
@@ -0,0 +1,2 @@
+requests
+schedule
\ No newline at end of file
index ecbd744..2c6c587 100644 (file)
@@ -1,3 +1,5 @@
+#!/usr/bin/env python3
+
 import time
 import schedule
 from pnf import PNF
@@ -6,7 +8,7 @@ import pnfconfig
 if __name__ == "__main__":
     try:
         pnf = PNF()
-        schedule.every(pnfconfig.rop).seconds.do(lambda: pnf.pm_job(pnfconfig.VES_IP, pnfconfig.VES_PORT))
+        schedule.every(pnfconfig.ROP).seconds.do(pnf.pm_job)
         while True:
             schedule.run_pending()
             time.sleep(1)
old mode 100644 (file)
new mode 100755 (executable)
index 44109a1..628b330
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
+
 import re
 import sysrepo as sr
 from pnf import PNF