forked from chuck-confluent/demo-siem-optimization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
111 lines (87 loc) · 2.2 KB
/
.gitpod.yml
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
github:
prebuilds:
# enable for the default branch (defaults to true)
master: true
# enable for all branches in this repo (defaults to false)
branches: false
# enable for pull requests coming from this repo (defaults to true)
pullRequests: true
# add a "Review in Gitpod" button as a comment to pull requests (defaults to false)
addComment: true
# configure whether Gitpod registers itself as a status check to pull requests
addCheck: false
tasks:
- name: download pcap
init: python3 scripts/get_pcap.py
- name: download docker images
init: docker-compose build && docker-compose pull
- name: start services
command: |
if [[ -z "$SUBMIT_CONNECTORS" ]]; then
docker-compose up -d
echo "Started without connectors"
else
docker-compose -f docker-compose.yml -f kafka-connect/submit-connectors.yml up -d
echo "Started with connectors"
fi
ports:
### Graphical User Interface (GUI) Apps
# Confluent Control Center
- port: 9021
onOpen: notify
visibility: public
# Confluent Sigma UI
- port: 8080
onOpen: notify
visibility: public
# Kibana UI
- port: 5601
onOpen: notify
visibility: public
# Splunk UI
- port: 8000
onOpen: notify
visibility: public
### Backend Services
# zookeeper
- port: 2181
onOpen: ignore
# Confluent Server (Kafka broker)
- port: 9092
onOpen: ignore
# Confluent Schema Registry
- port: 8081
onOpen: ignore
# Confluent ksqlDB
- port: 8088
onOpen: ignore
# Kafka Connect REST endpoint
- port: 8083
onOpen: ignore
# Connect receives data from Splunk Universal Forwarder
- port: 9997
onOpen: ignore
# Connect receives syslog data
- port: 5140
onOpen: ignore
# Splunk HTTP Event Collector (HEC)
- port: 8090
onOpen: ignore
# Splunk Universal Forwarder
- port: 3333
onOpen: ignore
# Splunk Event Generator
- port: 9500
onOpen: ignore
# Splunk Event Generator (Redis cache)
- port: 6379
onOpen: ignore
# ElasticSearch
- port: 9200
onOpen: ignore
# ElasticSearch
- port: 9300
onOpen: ignore
# Broker JMX metrics
- port: 9101
onOpen: ignore