|
1 | 1 | { |
2 | | - "id": "kubectl-helm-minikube", |
3 | | - "version": "1.2.2", |
4 | | - "name": "Kubectl, Helm, and Minikube", |
5 | | - "documentationURL": "https://github.com/devcontainers/features/tree/main/src/kubectl-helm-minikube", |
6 | | - "description": "Installs latest version of kubectl, Helm, and optionally minikube. Auto-detects latest versions and installs needed dependencies.", |
7 | | - "options": { |
8 | | - "version": { |
9 | | - "type": "string", |
10 | | - "proposals": [ |
11 | | - "latest", |
12 | | - "none", |
13 | | - "1.23", |
14 | | - "1.22", |
15 | | - "1.21", |
16 | | - "none" |
17 | | - ], |
18 | | - "default": "latest", |
19 | | - "description": "Select or enter a Kubernetes version to install" |
20 | | - }, |
21 | | - "helm": { |
22 | | - "type": "string", |
23 | | - "proposals": [ |
24 | | - "latest", |
25 | | - "none" |
26 | | - ], |
27 | | - "default": "latest", |
28 | | - "description": "Select or enter a Helm version to install" |
29 | | - }, |
30 | | - "minikube": { |
31 | | - "type": "string", |
32 | | - "proposals": [ |
33 | | - "latest", |
34 | | - "none" |
35 | | - ], |
36 | | - "default": "latest", |
37 | | - "description": "Select or enter a Minikube version to install" |
38 | | - } |
| 2 | + "id": "kubectl-helm-minikube", |
| 3 | + "version": "1.3.1", |
| 4 | + "name": "Kubectl, Helm, and Minikube", |
| 5 | + "documentationURL": "https://github.com/devcontainers/features/tree/main/src/kubectl-helm-minikube", |
| 6 | + "description": "Installs latest version of kubectl, Helm, and optionally minikube. Auto-detects latest versions and installs needed dependencies.", |
| 7 | + "options": { |
| 8 | + "version": { |
| 9 | + "type": "string", |
| 10 | + "proposals": [ |
| 11 | + "latest", |
| 12 | + "none", |
| 13 | + "1.23", |
| 14 | + "1.22", |
| 15 | + "1.21", |
| 16 | + "none" |
| 17 | + ], |
| 18 | + "default": "latest", |
| 19 | + "description": "Select or enter a Kubernetes version to install" |
39 | 20 | }, |
40 | | - "mounts": [ |
41 | | - { |
42 | | - "source": "minikube-config", |
43 | | - "target": "/home/vscode/.minikube", |
44 | | - "type": "volume" |
45 | | - } |
46 | | - ], |
47 | | - "customizations": { |
48 | | - "vscode": { |
49 | | - "settings": { |
50 | | - "github.copilot.chat.codeGeneration.instructions": [ |
51 | | - { |
52 | | - "text": "This dev container includes kubectl, Helm, optionally minikube, and needed dependencies pre-installed and available on the `PATH`. When configuring Ingress for your Kubernetes cluster, note that by default Kubernetes will bind to a specific interface's IP rather than localhost or all interfaces. This is why you need to use the Kubernetes Node's IP when connecting - even if there's only one Node as in the case of Minikube." |
53 | | - } |
54 | | - ] |
55 | | - } |
56 | | - } |
| 21 | + "helm": { |
| 22 | + "type": "string", |
| 23 | + "proposals": [ |
| 24 | + "latest", |
| 25 | + "none" |
| 26 | + ], |
| 27 | + "default": "latest", |
| 28 | + "description": "Select or enter a Helm version to install" |
57 | 29 | }, |
58 | | - "installsAfter": [ |
59 | | - "ghcr.io/devcontainers/features/common-utils" |
60 | | - ] |
| 30 | + "minikube": { |
| 31 | + "type": "string", |
| 32 | + "proposals": [ |
| 33 | + "latest", |
| 34 | + "none" |
| 35 | + ], |
| 36 | + "default": "latest", |
| 37 | + "description": "Select or enter a Minikube version to install" |
| 38 | + }, |
| 39 | + "kubectlFallbackVersion": { |
| 40 | + "type": "string", |
| 41 | + "default": "v1.35.1", |
| 42 | + "description": "Fallback kubectl version to use when the latest stable version cannot be fetched" |
| 43 | + } |
| 44 | + }, |
| 45 | + "mounts": [ |
| 46 | + { |
| 47 | + "source": "minikube-config", |
| 48 | + "target": "/home/vscode/.minikube", |
| 49 | + "type": "volume" |
| 50 | + } |
| 51 | + ], |
| 52 | + "customizations": { |
| 53 | + "vscode": { |
| 54 | + "settings": { |
| 55 | + "github.copilot.chat.codeGeneration.instructions": [ |
| 56 | + { |
| 57 | + "text": "This dev container includes kubectl, Helm, optionally minikube, and needed dependencies pre-installed and available on the `PATH`. When configuring Ingress for your Kubernetes cluster, note that by default Kubernetes will bind to a specific interface's IP rather than localhost or all interfaces. This is why you need to use the Kubernetes Node's IP when connecting - even if there's only one Node as in the case of Minikube." |
| 58 | + } |
| 59 | + ] |
| 60 | + } |
| 61 | + } |
| 62 | + }, |
| 63 | + "installsAfter": [ |
| 64 | + "ghcr.io/devcontainers/features/common-utils" |
| 65 | + ] |
61 | 66 | } |
0 commit comments