-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitpod.yml
60 lines (48 loc) · 1.17 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
github:
prebuilds:
# enable for the default branch (defaults to true)
master: true
# enable for all branches in this repo (defaults to false)
branches: true
# 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
image:
file: .gitpod.Dockerfile
tasks:
- name: start
command: confluent local services start && ./run.sh 6001 6002
ports:
#producer
- port: 6001
onOpen: open-browser
#consumer
- port: 6002
onOpen: ignore
# zookeeper
- port: 2181
onOpen: ignore
# Confluent Server (broker)
- port: 9092
onOpen: ignore
# Confluent Server (REST)
- port: 8090
onOpen: ignore
# Schema Registry
- port: 8081
onOpen: ignore
- port: 8082
onOpen: ignore
# Kafka Connect
- port: 8083
onOpen: ignore
# ksqlDB
- port: 8088
onOpen: ignore
# Confluent Control Center
- port: 9021
onOpen: notify
visibility: public