-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Expand file tree
/
Copy pathdevcontainer.json
More file actions
32 lines (28 loc) · 974 Bytes
/
devcontainer.json
File metadata and controls
32 lines (28 loc) · 974 Bytes
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
{
"name": "Kubernetes Autoscaler Development",
"image": "mcr.microsoft.com/devcontainers/go:1.25",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"dockerDashComposeVersion": "v2"
"moby": "false"
},
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {
"minikube": "latest"
},
"ghcr.io/devcontainers/features/github-cli:1": {}
},
"onCreateCommand": "sudo apt-get update && sudo apt-get install -y --no-install-recommends libseccomp-dev",
"postCreateCommand": "cd cluster-autoscaler && go mod download && cd .. && cd vertical-pod-autoscaler && go mod download && cd .. && hack/install-verify-tools.sh && go install sigs.k8s.io/kind@latest",
"customizations": {
"vscode": {
"extensions": [
"golang.go"
],
"settings": {
"go.testFlags": ["-race", "-count=1"],
"go.lintTool": "golangci-lint",
"go.lintOnSave": "workspace"
}
}
}
}