aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt
AgeCommit message (Expand)AuthorFilesLines
2023-03-10Upgrade parents to 2.5.4-SNAPSHOTRavi Pendurty234-3267/+2530
2023-03-02Release version 1.5.0 of ccsdk/featuresDan Timoney111-112/+112
2023-02-24Use version 2.5.3 parent pomsDan Timoney111-111/+111
2023-01-04Use released version 2.5.1 parent pomsDan Timoney111-111/+111
2022-11-30Merge "SDNR UI don't process list which has more than one key"Dan Timoney2-9/+25
2022-11-30Merge "SDNR GUI always says 'Input is wrong.' for leaves with type 'inet:ip-a...Dan Timoney1-1/+1
2022-11-30Merge "SDNR GUI is unable to display values of fields with enum type from dro...Dan Timoney1-3/+3
2022-11-30Merge "SDNR UI module not showing under some parent module issue fix"Dan Timoney2-1/+17
2022-11-21SDNR
version: "2.1"
services:
################################################################
  elasticsearch:
    build: .
#    context: elasticsearch
    container_name: "sdc-es"
    restart: "always"
    image: "ecomp-nexus:51212/ecomp/sdc-elasticsearch:1610.2.13"
    mem_limit: "1g"
    memswap_limit: "1g"
    logging:
        driver: "json-file"
        options:
            max-size: "100m"
            max-file: "10"
    ports:
        - "9200:9200"
        - "9300:9300"
    environment:
#        - ES_JAVA_OPTS="-Xms1g -Xmx1g"
        - ES_HEAP_SIZE=1073741824
        - HOST_IP:HOSTIP
        - ENVNAME:DEP_ENV
    volumes:
        - /etc/localtime:/etc/localtime:ro
        - /data/ES:/usr/share/elasticsearch/data
        - /data/ASDC/environments:/root/chef-solo/environments      
    ulimits:
        memlock: -1
        nproc: 65535
        nofile:
            soft: 100000
            hard: 100000

  
  cassandra:
    build: .
#    context: cassandra
    container_name: "sdc-cs"
    restart: "always"
    image: "ecomp-nexus:51212/ecomp/sdc-cassandra:1610.2.13"
    logging:
        driver: "json-file"
        options:
            max-size: "100m"
            max-file: "10"
    ports:
        - "9042:9042"
        - "9160:9160"
    environment:
        - ES_HEAP_SIZE=1073741824
        - HOST_IP:HOSTIP
        - ENVNAME:DEP_ENV
    volumes:
        - /etc/localtime:/etc/localtime:ro
        - /data/CS:/var/lib/cassandra
        - /data/ASDC/environments:/root/chef-solo/environments
    ulimits:
        memlock: -1
        nproc: 65535
        nofile:
            soft: 100000
            hard: 100000

            

  kibana:
    build: .
    container_name: "sdc-kbn"
    restart: "always"
    image: "ecomp-nexus:51212/ecomp/sdc-kibana:1610.2.13"
    mem_limit: "1g"
    memswap_limit: "1g"
    logging:
        driver: "json-file"
        options:
            max-size: "100m"
            max-file: "10"
    ports:
        - "5601:5601"
    environment:
        - ENVNAME:DEP_ENV   
    volumes:
        - /etc/localtime:/etc/localtime:ro
        - /data/ASDC/environments:/root/chef-solo/environments
    ulimits:
        memlock: -1
        nproc: 65535
        nofile:
            soft: 100000
            hard: 100000
    depends_on:
        - elasticsearch




  jettyBE:
    build: .
    container_name: "sdc-be"
    image: "ecomp-nexus:51212/ecomp/sdc-backend:1610.2.13"
    mem_limit: "3g"
    memswap_limit: "3g"
    logging:
        driver: "json-file"
        options:
            max-size: "100m"
            max-file: "10"
    ports:
        - "8080:8080"
        - "8443:8443"
    environment
241-13082/+3451
2022-02-03Merge "Update ONF12 devicemanager"Dan Timoney14-333/+445
2022-02-03Merge "Update adapter-manager devicemanager"Dan Timoney18-122/+1256
2022-02-03Merge "add async auth method support"Dan Timoney31-85/+743
2022-02-01Update ODLUXAijana Schumann241-13082/+3451
2022-02-01Update roadm devicemanagersRavi Pendurty5-33/+51
2022-02-01Update ONF12 devicemanagerRavi Pendurty14-333/+445
2022-02-01Update adapter-manager devicemanagerRavi Pendurty18-122/+1256
2022-02-01add async auth method supportMichael DÜrre31-85/+743
2022-02-01add nodb supportMichael DÜrre13-37/+621
2022-02-01Merge "refactor devicemanager-core"KAPIL SINGAL7-70/+100
2022-01-31Enhance netconfnode-state-service bundleRavi Pendurty9-5/+84