-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitpod.yml
72 lines (58 loc) · 1.95 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
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
# Uncomment to run tasks
# tasks:
# Uncomment task if you want to start services on launch
# - name: start
# command: confluent local services start && gp sync-done start
# Uncomment task if you want to create datagen connectors on launch
# - name: datagen
# command: |
# gp sync-await start
# curl -i -X PUT -H "Content-Type:application/json" \
# http://localhost:8083/connectors/users/config \
# -d @connectors/connector-datagen-users.json
# curl -i -X PUT -H "Content-Type:application/json" \
# http://localhost:8083/connectors/trades/config \
# -d @connectors/connector-datagen-trades.json
# Uncomment task if you want to log into a confluent cloud cluster.
# Must have $CONFLUENT_CLOUD_EMAIL, CONFLUENT_CLOUD_PASSWORD, and $CCLOUD_ENV_ID defined in gitpod.io/variables and scoped to this repo
# - name: ccloud
# command: confluent login --save && confluent environment use $CCLOUD_ENV_ID
ports:
# 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: open-preview
visibility: public