-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitpod.yml
47 lines (37 loc) · 875 Bytes
/
.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
image:
file: .gitpod/Dockerfile
additionalRepositories:
- url: https://github.com/gitpod-io/gitpod
checkoutLocation: gitpod
tasks:
- init: |
go install ./...
command: |
# Install commitlint
npm i -g @commitlint/{config-conventional,cli}
# Install husky
npm i -g husky
# Activate hooks
husky install
# Remove anything already on dev cluster
kubectl delete -f ./config/samples || true
make uninstall || true
# Install to dev cluster
make install
kubectl apply -f ./config/samples
# Run run run!!!
make run
env:
ENABLE_WEBHOOKS: false
ports:
- port: 8080
name: operator
onOpen: notify
- port: 8081
name: health
onOpen: notify
vscode:
extensions:
- donjayamanne.git-extension-pack
- EditorConfig.EditorConfig
- golang.go