aboutsummaryrefslogtreecommitdiffstats
path: root/tools/development/docker-compose.yml
blob: df8fee0b82a7357ea25ba7daa9fe6449330d9719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
version: "3.5"
services:

  #
  # DMaaP Message Router
  #

  message-router-zookeeper:
    image: nexus3.onap.org:10001/onap/dmaap/zookeeper:4.0.0
    ports:
      - "2181:2181"

  message-router-kafka-0:
    image: nexus3.onap.org:10001/onap/dmaap/kafka111:0.0.6
    ports:
      - "9092:9092"
      - "9093:9093"
#    command: "start-kafka.sh"
    environment:
      HOST_IP:                                     127.0.0.1
      KAFKA_BROKER_ID:                             0
      ENDPOINT_PORT:                               30490
      KAFKA_ZOOKEEPER_CONNECT:                     "message-router-zookeeper:2181"
      KAFKA_AUTO_CREATE_TOPICS_ENABLE:             "true"
      KAFKA_DELETE_TOPIC_ENABLE:                   "true"

      KAFKA_LISTENERS:                             "INTERNAL_SASL_PLAINTEXT://0.0.0.0:9092,EXTERNAL_SASL_PLAINTEXT://0.0.0.0:9093"
      KAFKA_ADVERTISED_LISTENERS:                  "INTERNAL_SASL_PLAINTEXT://message-router-kafka-0:9092,EXTERNAL_SASL_PLAINTEXT://message-router-kafka-0:9093"
      KAFKA_LISTENER_SECURITY_PROTOCOL_MAP:        "INTERNAL_SASL_PLAINTEXT:SASL_PLAINTEXT,EXTERNAL_SASL_PLAINTEXT:SASL_PLAINTEXT"
      KAFKA_INTER_BROKER_LISTENER_NAME:            "INTERNAL_SASL_PLAINTEXT"
      KAFKA_SASL_ENABLED_MECHANISMS:               "PLAIN"
      KAFKA_SASL_MECHANISM_INTER_BROKER_PROTOCOL:  "PLAIN"
      KAFKA_AUTHORIZER_CLASS_NAME:                 "org.onap.dmaap.kafkaAuthorize.KafkaCustomAuthorizer"

      aaf_locate_url:                              https://aaf-locate:8095
      KAFKA_LOG_DIRS:                              /opt/kafka/data
      KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR:      1
      KAFKA_DEFAULT_REPLICATION_FACTOR:            1
      KAFKA_NUM_PARTITIONS:                        1
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    depends_on:
      - message-router-zookeeper

  #
  # Consul / CBS
  #

  consul-server:
    image: docker.io/consul:1.0.6
    ports:
      - "8500:8500"
    volumes:
      - ./consul/:/consul/config

  consul-config:
    image: docker.io/consul:1.0.6
    restart: on-failure
    command: "kv put -http-addr=http://consul-server:8500 dcae-hv-ves-collector '@/home/consul/routing.json'"
    volumes:
      - type: bind
        source: ./routing.json
        target: /home/consul/routing.json
        read_only: true
    depends_on:
      - consul-server

  config-binding-service:
    image: nexus3.onap.org:10001/onap/org.onap.dcaegen2.platform.configbinding.app-app:2.2.4
    ports:
      - "10000:10000"
    environment:
      CONSUL_HOST: "consul-server"
    depends_on:
      - consul-config

  #
  # DCAE HV VES Collector
  #

  ves-hv-collector:
    image: onap/org.onap.dcaegen2.collectors.hv-ves.hv-collector-main:1.8.0-SNAPSHOT
    ports:
      - "6060:6060"
      - "6061:6061/tcp"
    environment:
      JAVA_OPTS: "-Dio.netty.leakDetection.level=paranoid -Dlogback.configurationFile=/etc/ONAP/dcae-hv-ves-collector/logback.xml"
      VESHV_CONFIGURATION_FILE: "/etc/ves-hv/configuration/base.json"
      CONSUL_HOST: "consul-server"
      CONFIG_BINDING_SERVICE: "config-binding-service"
      HOSTNAME: "dcae-hv-ves-collector"
      CONFIG_BINDING_SERVICE_SERVICE_PORT: "10000"
    healthcheck:
      test: ./healthcheck.sh || exit 1
      interval: 10s
      timeout: 3s
      retries: 3
      start_period: 15s
    depends_on:
      - message-router-kafka-0
      - config-binding-service
    volumes:
      - ./configuration/:/etc/ves-hv/configuration/
      - ../ssl/:/etc/ves-hv/ssl/
      - ./logs:/var/log/ONAP/dcae-hv-ves-collector/


  #
  # Simulators
  #

  xnf-simulator:
    image: onap/org.onap.dcaegen2.collectors.hv-ves.hv-collector-xnf-simulator:1.8.0-SNAPSHOT
    ports:
      - "6062:6062/tcp"
      - "6063:6063"
    command: ["--listen-port", "6062",
              "--health-check-api-port", "6063",
              "--ves-host", "ves-hv-collector",
              "--ves-port", "6061",
              "--key-store", "/etc/ves-hv/client.p12",
              "--key-store-password-file", "/etc/ves-hv/client.pass",
              "--trust-store", "/etc/ves-hv/trust.p12",
              "--trust-store-password-file", "/etc/ves-hv/trust.pass"]
    healthcheck:
      test: curl -f http://localhost:6063/health/ready || exit 1
      interval: 10s
      timeout: 3s
      retries: 3
      start_period: 10s
    depends_on:
      - ves-hv-collector
    volumes:
      - ../ssl/:/etc/ves-hv/

  dcae-app-simulator:
    image: onap/org.onap.dcaegen2.collectors.hv-ves.hv-collector-dcae-app-simulator:1.8.0-SNAPSHOT
    ports:
      - "6064:6064/tcp"
    command: ["--listen-port", "6064",
              "--kafka-bootstrap-servers", "message-router-kafka-0:9092",
              "--kafka-topics", "HV_VES_PERF3GPP,SEC_3GPP_FAULTSUPERVISION_OUTPUT,SEC_3GPP_PROVISIONING_OUTPUT,SEC_3GPP_HEARTBEAT_OUTPUT,SEC_3GPP_PERFORMANCEASSURANCE_OUTPUT"]
    depends_on:
      - message-router-kafka-0

  #
  # Monitoring
  #

  prometheus:
    image: prom/prometheus
    ports:
      - "9090:9090"
    volumes:
      - ./prometheus.yml:/etc/prometheus/prometheus.yml

  grafana:
    image: grafana/grafana
    ports:
      - "3000:3000"
    environment:
      GF_AUTH_DISABLE_LOGIN_FORM: "true"
      GF_AUTH_DISABLE_SIGNOUT_MENU: "true"
      GF_AUTH_ANONYMOUS_ENABLED: "true"
      GF_AUTH_ANONYMOUS_ORG_ROLE: "Admin"
    volumes:
      - ./grafana/datasources:/etc/grafana/provisioning/datasources
      - ./grafana/dashboards-providers:/etc/grafana/provisioning/dashboards
      # defined in ./grafana/dashboards-providers/dasboard-providers.yaml
      - ./grafana/dashboards:/var/lib/grafana/dashboards/hv-ves