-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdevbox.json
More file actions
53 lines (53 loc) · 1.35 KB
/
devbox.json
File metadata and controls
53 lines (53 loc) · 1.35 KB
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
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.16.0/.schema/devbox.schema.json",
"packages": [
"just@1.46.0",
"kubectl@1.35.0",
"kyverno-chainsaw@0.2.14",
"kubernetes-helm@3.19.1",
"tilt@0.36.3",
"golangci-lint@2.10.1",
"ko@0.18.1"
],
"shell": {
"init_hook": [
"echo 'Welcome to devbox!' > /dev/null",
"echo 'https://github.com/NixOS/nixpkgs/issues/355486' > /dev/null",
"echo 'https://github.com/jetify-com/devbox/issues/2566' > /dev/null",
"echo 'https://github.com/NixOS/nixpkgs/issues/358795#issuecomment-2598552176' > /dev/null",
"unset DEVELOPER_DIR"
],
"scripts": {
"setup-and-test-e2e": [
"just setup-and-test-e2e"
],
"create-lke-cluster": [
"just create-lke-cluster"
],
"init-lke-cluster": [
"just init-lke-cluster"
],
"run-tilt-lke": [
"just run-tilt-lke"
],
"cleanup-tilt-lke": [
"just cleanup-tilt-lke"
],
"run-e2e": [
"just run-e2e"
],
"configure-lke-cluster": [
"just configure-lke-cluster"
],
"destroy-lke-cluster": [
"just destroy-lke-cluster \"$@\""
],
"get-lke-cluster-id": [
"just get-lke-cluster-id"
],
"build-karpl-image": [
"just build-karpl-image"
]
}
}
}