diff options
author | Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com> | 2020-04-08 09:47:06 +0200 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2020-04-09 08:49:14 +0000 |
commit | cfa48db5d059b891aa53cb52e512504860863bed (patch) | |
tree | 8563685010d5599ac7744409ed67a61c54c4f083 /test/mocks/pnfsimulator/netconfsimulator/docker-compose.yml | |
parent | 6e4256fa4db190543ffd84a87b643c27d8591d54 (diff) |
Remove old PNF simulator
Issue-ID: INT-1517
Signed-off-by: Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com>
Change-Id: I235b0fdf12b265a256c371126e218826e74a9133
Diffstat (limited to 'test/mocks/pnfsimulator/netconfsimulator/docker-compose.yml')
-rw-r--r-- | test/mocks/pnfsimulator/netconfsimulator/docker-compose.yml | 93 |
1 files changed, 0 insertions, 93 deletions
diff --git a/test/mocks/pnfsimulator/netconfsimulator/docker-compose.yml b/test/mocks/pnfsimulator/netconfsimulator/docker-compose.yml deleted file mode 100644 index 5e9acbe8e..000000000 --- a/test/mocks/pnfsimulator/netconfsimulator/docker-compose.yml +++ /dev/null @@ -1,93 +0,0 @@ -version: '3' - -services: - zookeeper: - image: wurstmeister/zookeeper - ports: - - "2181:2181" - networks: - - netconfnetwork - - kafka1: - image: wurstmeister/kafka:1.1.0 - ports: - - "9092:9092" - hostname: kafka1 - networks: - - netconfnetwork - environment: - KAFKA_ADVERTISED_PORT: 9092 - KAFKA_ADVERTISED_HOST_NAME: kafka1 - KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 - KAFKA_CREATE_TOPICS: "config:1:1" - KAFKA_DELETE_RETENTION_MS: 604800000 - KAFKA_LOG_CLEANER_DELETE_RETENTION_MS: 604800000 - depends_on: - - zookeeper - - netconf-simulator: - image: nexus3.onap.org:10003/onap/netconfsimulator - ports: - - "9000:8080" - restart: on-failure - hostname: netconf-simulator - networks: - - netconfnetwork - depends_on: - - zookeeper - - kafka1 - - netopeer - - netopeer: - image: nexus3.onap.org:10003/netopeer - ports: - - "830:830" - - "5002:5002" - - "6513:6513" - volumes: - - ./netconf:/netconf - - ./netopeer-change-saver-native:/netopeer-change-saver - - ./tls:/tls - env_file: - - ./config/netconf.env - restart: on-failure - networks: - - netconfnetwork - depends_on: - - sftp-server - - ftpes-server - command: - - /netconf/initialize_netopeer.sh - - sftp-server: - image: atmoz/sftp:alpine - ports: - - "2222:22" - volumes: - - ./sftp:/home/sftp-user/sftp - - ./ssh/ssh_host_rsa_key.pub:/home/sftp-user/.ssh/keys/ssh_host_rsa_key.pub - networks: - - netconfnetwork - restart: on-failure - command: sftp-user::1001 - - ftpes-server: - image: stilliard/pure-ftpd:latest - ports: - - "2221:21" - - "30000-30009:30000-30009" - volumes: - - ./ftpes/files:/home/ftpusers/onap - - ./ftpes/userpass/:/etc/pure-ftpd/passwd/ - - ./ftpes/tls/:/etc/ssl/private/ - networks: - - netconfnetwork - environment: - PUBLICHOST: localhost - ADDED_FLAGS: --tls=2 - FTP_USER_HOME: onap - restart: on-failure - -networks: - netconfnetwork: - driver: bridge |