@enjoys/context-engine 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -8
- package/data/commands/aliyun.json +158 -0
- package/data/commands/amplify.json +174 -0
- package/data/commands/argo.json +212 -0
- package/data/commands/argocd.json +144 -35
- package/data/commands/aws-copilot.json +161 -0
- package/data/commands/az-devops.json +155 -0
- package/data/commands/bq.json +177 -0
- package/data/commands/calicoctl.json +154 -0
- package/data/commands/chamber.json +128 -0
- package/data/commands/cilium.json +154 -0
- package/data/commands/civo.json +147 -0
- package/data/commands/cloudflared.json +133 -0
- package/data/commands/cmctl.json +143 -0
- package/data/commands/crossplane.json +119 -0
- package/data/commands/devspace.json +198 -0
- package/data/commands/doctl.json +510 -156
- package/data/commands/doppler.json +161 -0
- package/data/commands/eb.json +201 -0
- package/data/commands/ecs-cli.json +132 -0
- package/data/commands/flux.json +190 -0
- package/data/commands/garden.json +180 -0
- package/data/commands/gsutil.json +197 -0
- package/data/commands/hcloud.json +169 -0
- package/data/commands/helmfile.json +178 -0
- package/data/commands/heroku.json +239 -0
- package/data/commands/ibmcloud.json +184 -0
- package/data/commands/infisical.json +127 -0
- package/data/commands/istioctl.json +129 -23
- package/data/commands/k3d.json +156 -0
- package/data/commands/k3s.json +134 -0
- package/data/commands/k9s.json +169 -62
- package/data/commands/kamel.json +155 -0
- package/data/commands/kn.json +160 -0
- package/data/commands/kube-score.json +86 -0
- package/data/commands/kubeconform.json +98 -0
- package/data/commands/kubectx.json +58 -0
- package/data/commands/kubens.json +45 -0
- package/data/commands/kustomize.json +82 -17
- package/data/commands/lightsail.json +168 -0
- package/data/commands/linkerd.json +174 -0
- package/data/commands/mc.json +236 -0
- package/data/commands/minikube.json +264 -60
- package/data/commands/oci.json +184 -0
- package/data/commands/okteto.json +164 -0
- package/data/commands/openstack.json +212 -0
- package/data/commands/popeye.json +109 -0
- package/data/commands/rancher.json +141 -0
- package/data/commands/rclone.json +275 -0
- package/data/commands/s3cmd.json +201 -0
- package/data/commands/scw.json +169 -0
- package/data/commands/skaffold.json +189 -0
- package/data/commands/skopeo.json +100 -19
- package/data/commands/sops.json +112 -24
- package/data/commands/stern.json +124 -0
- package/data/commands/telepresence.json +122 -0
- package/data/commands/tilt.json +160 -0
- package/data/commands/tkn.json +150 -0
- package/data/commands/upcloud.json +129 -0
- package/data/commands/velero.json +141 -0
- package/data/commands/vultr.json +157 -0
- package/data/commands/wrangler.json +129 -29
- package/data/manifest.json +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "devspace",
|
|
3
|
+
"description": "DevSpace — develop, deploy, and debug apps on Kubernetes",
|
|
4
|
+
"category": "containers",
|
|
5
|
+
"platforms": [
|
|
6
|
+
"linux",
|
|
7
|
+
"macos",
|
|
8
|
+
"windows"
|
|
9
|
+
],
|
|
10
|
+
"shells": [
|
|
11
|
+
"bash",
|
|
12
|
+
"zsh",
|
|
13
|
+
"fish",
|
|
14
|
+
"powershell"
|
|
15
|
+
],
|
|
16
|
+
"subcommands": [
|
|
17
|
+
{
|
|
18
|
+
"name": "init",
|
|
19
|
+
"description": "Initialize DevSpace in a project",
|
|
20
|
+
"examples": [
|
|
21
|
+
"devspace init"
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "dev",
|
|
26
|
+
"description": "Start development mode",
|
|
27
|
+
"examples": [
|
|
28
|
+
"devspace dev",
|
|
29
|
+
"devspace dev --no-warn",
|
|
30
|
+
"devspace dev -n my-ns"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "deploy",
|
|
35
|
+
"description": "Deploy the project",
|
|
36
|
+
"examples": [
|
|
37
|
+
"devspace deploy",
|
|
38
|
+
"devspace deploy --skip-build",
|
|
39
|
+
"devspace deploy -p production"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "build",
|
|
44
|
+
"description": "Build images",
|
|
45
|
+
"examples": [
|
|
46
|
+
"devspace build",
|
|
47
|
+
"devspace build --skip-push"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "purge",
|
|
52
|
+
"description": "Delete deployed resources",
|
|
53
|
+
"examples": [
|
|
54
|
+
"devspace purge"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "enter",
|
|
59
|
+
"description": "Start a shell in container",
|
|
60
|
+
"examples": [
|
|
61
|
+
"devspace enter",
|
|
62
|
+
"devspace enter -c my-container"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "logs",
|
|
67
|
+
"description": "View container logs",
|
|
68
|
+
"examples": [
|
|
69
|
+
"devspace logs",
|
|
70
|
+
"devspace logs -f",
|
|
71
|
+
"devspace logs -c my-container"
|
|
72
|
+
]
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "sync",
|
|
76
|
+
"description": "Start file sync",
|
|
77
|
+
"examples": [
|
|
78
|
+
"devspace sync --local-path=. --container-path=/app"
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "open",
|
|
83
|
+
"description": "Open app in browser",
|
|
84
|
+
"examples": [
|
|
85
|
+
"devspace open"
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "ui",
|
|
90
|
+
"description": "Start DevSpace UI",
|
|
91
|
+
"examples": [
|
|
92
|
+
"devspace ui"
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "use",
|
|
97
|
+
"description": "Set context/namespace/profile",
|
|
98
|
+
"examples": [
|
|
99
|
+
"devspace use context my-context",
|
|
100
|
+
"devspace use namespace my-ns",
|
|
101
|
+
"devspace use profile my-profile"
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "list",
|
|
106
|
+
"description": "List resources",
|
|
107
|
+
"examples": [
|
|
108
|
+
"devspace list commands",
|
|
109
|
+
"devspace list profiles",
|
|
110
|
+
"devspace list vars",
|
|
111
|
+
"devspace list deployments"
|
|
112
|
+
]
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "run",
|
|
116
|
+
"description": "Run custom command",
|
|
117
|
+
"examples": [
|
|
118
|
+
"devspace run my-command"
|
|
119
|
+
]
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "reset",
|
|
123
|
+
"description": "Reset cluster state",
|
|
124
|
+
"examples": [
|
|
125
|
+
"devspace reset vars",
|
|
126
|
+
"devspace reset pods"
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "cleanup",
|
|
131
|
+
"description": "Clean images",
|
|
132
|
+
"examples": [
|
|
133
|
+
"devspace cleanup images"
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "upgrade",
|
|
138
|
+
"description": "Upgrade DevSpace",
|
|
139
|
+
"examples": [
|
|
140
|
+
"devspace upgrade"
|
|
141
|
+
]
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
"globalOptions": [
|
|
145
|
+
{
|
|
146
|
+
"name": "--config",
|
|
147
|
+
"description": "Config file path",
|
|
148
|
+
"type": "string"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "--namespace",
|
|
152
|
+
"short": "-n",
|
|
153
|
+
"description": "Namespace",
|
|
154
|
+
"type": "string"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "--kube-context",
|
|
158
|
+
"description": "Kubernetes context",
|
|
159
|
+
"type": "string"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "--profile",
|
|
163
|
+
"short": "-p",
|
|
164
|
+
"description": "Profile to use",
|
|
165
|
+
"type": "string"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "--var",
|
|
169
|
+
"description": "Set variables",
|
|
170
|
+
"type": "string"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"name": "--debug",
|
|
174
|
+
"description": "Debug mode"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "--silent",
|
|
178
|
+
"description": "Silent mode"
|
|
179
|
+
}
|
|
180
|
+
],
|
|
181
|
+
"examples": [
|
|
182
|
+
"devspace init",
|
|
183
|
+
"devspace dev",
|
|
184
|
+
"devspace deploy",
|
|
185
|
+
"devspace build",
|
|
186
|
+
"devspace enter",
|
|
187
|
+
"devspace logs -f",
|
|
188
|
+
"devspace purge",
|
|
189
|
+
"devspace use namespace my-ns",
|
|
190
|
+
"devspace ui"
|
|
191
|
+
],
|
|
192
|
+
"relatedCommands": [
|
|
193
|
+
"skaffold",
|
|
194
|
+
"tilt",
|
|
195
|
+
"telepresence",
|
|
196
|
+
"kubectl"
|
|
197
|
+
]
|
|
198
|
+
}
|