-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
39 lines (39 loc) · 1.17 KB
/
devcontainer-feature.json
File metadata and controls
39 lines (39 loc) · 1.17 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
{
"id": "crossplane-cli",
"version": "1.0.0",
"name": "crossplane-cli",
"documentationURL": "http://github.com/devcontainers-extra/features/tree/main/src/crossplane-cli",
"description": "Installs crossplane CLI, which provides utilities to make using Crossplane easier.",
"options": {
"version": {
"type": "string",
"proposals": [
"current"
],
"default": "current",
"description": "Select version of crossplane"
},
"channel": {
"type": "string",
"proposals": [
"stable",
"preview",
"master"
],
"default": "stable",
"description": "Select channel of crossplane releases"
}
},
"customizations": {
"vscode": {
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes crossplane pre-installed and available on the `PATH`."
}
]
}
}
},
"installsAfter": []
}