forked from nicklhw/vault-transform-demo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitpod.yml
66 lines (62 loc) · 1.36 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
tasks:
- name: demo
init: bin/demo prepare
command: |
bin/demo start
gp ports await 8200
gp ports await 15433
gp ports await 8080
gp ports await 3000
gp ports list
gp sync-done demo-start
- name: yugabytedb-shell
command: |
gp sync-await demo-start
direnv allow
bin/demo yugabytedb-shell
- name: vault-shell
command: |
gp sync-await demo-start
direnv allow
bin/demo vault-shell
ports:
- name: sqlpad
description: SQLPad - SQL Queries Executor
port: 3000
onOpen: ignore
- name: ysql
description: YugabyteDB YSQL API
port: 5433
onOpen: ignore
- name: ycql
description: YugabyteDB YCQL API
port: 9042
onOpen: ignore
- name: yugabyted-master
description: YugabyteDB Master UI
port: 7000
onOpen: ignore
- name: demo-api
description: Demo App API
port: 7070
onOpen: ignore
- name: demo-ui
description: Demo App UI
port: 8080
onOpen: ignore
- name: vault-agent
description: Vault Agent for Demo App
port: 8100
onOpen: ignore
- name: vault
description: Vault
port: 8200
onOpen: ignore
- name: yugabyted-tserver
description: YugabyteDB Tserver UI
port: 9000
onOpen: ignore
- name: yugabyted-ui
description: YugabyteDB Cluster UI
port: 15433
onOpen: ignore