forked from kubernetes/autoscaler
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdevcontainer.json
More file actions
43 lines (39 loc) · 1.18 KB
/
devcontainer.json
File metadata and controls
43 lines (39 loc) · 1.18 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
{
"name": "Azure CAS Dev",
"image": "mcr.microsoft.com/devcontainers/go:1.22",
"runArgs": ["--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"],
"customizations": {
"vscode": {
"settings": {
"go.toolsManagement.checkForUpdates": "local",
"go.useLanguageServer": true,
"go.gopath": "/go",
"chat.useAgentSkills": true
},
"extensions": [
"golang.Go",
"ms-kubernetes-tools.vscode-kubernetes-tools",
"ms-kubernetes-tools.vscode-aks-tools",
"ms-azuretools.vscode-bicep",
"GitHub.vscode-pull-request-github",
"GitHub.copilot-chat"
]
}
},
"features": {
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {
"helm": "latest",
"minikube": "none"
},
"ghcr.io/devcontainers/features/azure-cli:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/rio/features/skaffold:2": {}
},
"postCreateCommand": {
"install ko": "go install github.com/google/ko@latest",
"install yq": "go install github.com/mikefarah/yq/v4@latest",
"disable skaffold metrics": "skaffold config set --global collect-metrics false"
},
"remoteUser": "vscode"
}