Skip to content

Add k8s tooling. #9925

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@
]
},
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers/features/python:1": {}
"ghcr.io/devcontainers/features/python:1": {},
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {
"version": "latest",
"helm": "latest",
"minikube": "latest"
Comment on lines +19 to +21
Copy link
Preview

Copilot AI Jun 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using 'latest' for version, helm, and minikube may lead to unexpected breaking changes. Consider pinning explicit versions to ensure consistent development environments.

Suggested change
"version": "latest",
"helm": "latest",
"minikube": "latest"
"version": "1.27.4",
"helm": "3.12.3",
"minikube": "1.30.1"

Copilot uses AI. Check for mistakes.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This does seem like good guidance unless we want to stay on the bleeding edge in order to be able to validate things.

}
},

"hostRequirements": {
Expand All @@ -39,7 +44,8 @@
"ms-dotnettools.csdevkit",
"ms-azuretools.vscode-bicep",
"ms-azuretools.azure-dev",
"GitHub.copilot"
"GitHub.copilot",
"ms-kubernetes-tools.vscode-kubernetes-tools"
],
"settings": {
"remote.autoForwardPorts": true,
Expand Down
Loading