@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,180 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "garden",
|
|
3
|
+
"description": "Garden — automate building, deploying, and testing Kubernetes apps",
|
|
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": "deploy",
|
|
19
|
+
"description": "Deploy actions/services",
|
|
20
|
+
"examples": [
|
|
21
|
+
"garden deploy",
|
|
22
|
+
"garden deploy my-service",
|
|
23
|
+
"garden deploy --force"
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "dev",
|
|
28
|
+
"description": "Start development mode",
|
|
29
|
+
"examples": [
|
|
30
|
+
"garden dev",
|
|
31
|
+
"garden dev my-service"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "build",
|
|
36
|
+
"description": "Build modules/actions",
|
|
37
|
+
"examples": [
|
|
38
|
+
"garden build",
|
|
39
|
+
"garden build my-module"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "test",
|
|
44
|
+
"description": "Run tests",
|
|
45
|
+
"examples": [
|
|
46
|
+
"garden test",
|
|
47
|
+
"garden test my-module",
|
|
48
|
+
"garden test --force"
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "run",
|
|
53
|
+
"description": "Run a one-off action",
|
|
54
|
+
"examples": [
|
|
55
|
+
"garden run my-task",
|
|
56
|
+
"garden run my-task -- arg1 arg2"
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "logs",
|
|
61
|
+
"description": "View runtime logs",
|
|
62
|
+
"examples": [
|
|
63
|
+
"garden logs",
|
|
64
|
+
"garden logs my-service",
|
|
65
|
+
"garden logs --follow"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "exec",
|
|
70
|
+
"description": "Execute command in container",
|
|
71
|
+
"examples": [
|
|
72
|
+
"garden exec my-service -- sh"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "get",
|
|
77
|
+
"description": "Get info about resources",
|
|
78
|
+
"examples": [
|
|
79
|
+
"garden get status",
|
|
80
|
+
"garden get outputs",
|
|
81
|
+
"garden get actions",
|
|
82
|
+
"garden get graph"
|
|
83
|
+
]
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "cleanup",
|
|
87
|
+
"description": "Clean up resources",
|
|
88
|
+
"examples": [
|
|
89
|
+
"garden cleanup namespace",
|
|
90
|
+
"garden cleanup deploy"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "plugins",
|
|
95
|
+
"description": "List/manage plugins",
|
|
96
|
+
"examples": [
|
|
97
|
+
"garden plugins",
|
|
98
|
+
"garden plugins resolve-action my-action"
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "login",
|
|
103
|
+
"description": "Login to Garden Cloud",
|
|
104
|
+
"examples": [
|
|
105
|
+
"garden login"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "create",
|
|
110
|
+
"description": "Create a project/module",
|
|
111
|
+
"examples": [
|
|
112
|
+
"garden create project"
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "validate",
|
|
117
|
+
"description": "Validate config",
|
|
118
|
+
"examples": [
|
|
119
|
+
"garden validate"
|
|
120
|
+
]
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "util",
|
|
124
|
+
"description": "Utility commands",
|
|
125
|
+
"examples": [
|
|
126
|
+
"garden util fetch-tools",
|
|
127
|
+
"garden util profile-project"
|
|
128
|
+
]
|
|
129
|
+
}
|
|
130
|
+
],
|
|
131
|
+
"globalOptions": [
|
|
132
|
+
{
|
|
133
|
+
"name": "--env",
|
|
134
|
+
"short": "-e",
|
|
135
|
+
"description": "Environment",
|
|
136
|
+
"type": "string"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"name": "--root",
|
|
140
|
+
"description": "Project root",
|
|
141
|
+
"type": "string"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "--logger-type",
|
|
145
|
+
"description": "Logger type",
|
|
146
|
+
"type": "string"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"name": "--log-level",
|
|
150
|
+
"short": "-l",
|
|
151
|
+
"description": "Log level",
|
|
152
|
+
"type": "string"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"name": "--force-refresh",
|
|
156
|
+
"description": "Force refresh of provider plugins"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"name": "--var",
|
|
160
|
+
"description": "Set variables",
|
|
161
|
+
"type": "string"
|
|
162
|
+
}
|
|
163
|
+
],
|
|
164
|
+
"examples": [
|
|
165
|
+
"garden deploy",
|
|
166
|
+
"garden dev",
|
|
167
|
+
"garden build",
|
|
168
|
+
"garden test",
|
|
169
|
+
"garden run my-task",
|
|
170
|
+
"garden logs --follow",
|
|
171
|
+
"garden get status",
|
|
172
|
+
"garden validate"
|
|
173
|
+
],
|
|
174
|
+
"relatedCommands": [
|
|
175
|
+
"skaffold",
|
|
176
|
+
"tilt",
|
|
177
|
+
"devspace",
|
|
178
|
+
"kubectl"
|
|
179
|
+
]
|
|
180
|
+
}
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "gsutil",
|
|
3
|
+
"description": "Google Cloud Storage CLI tool",
|
|
4
|
+
"category": "cloud",
|
|
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": "ls",
|
|
19
|
+
"description": "List buckets or objects",
|
|
20
|
+
"examples": [
|
|
21
|
+
"gsutil ls",
|
|
22
|
+
"gsutil ls gs://my-bucket/",
|
|
23
|
+
"gsutil ls -l gs://my-bucket/",
|
|
24
|
+
"gsutil ls -la gs://my-bucket/file.txt"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "mb",
|
|
29
|
+
"description": "Make bucket",
|
|
30
|
+
"examples": [
|
|
31
|
+
"gsutil mb gs://new-bucket",
|
|
32
|
+
"gsutil mb -l us-central1 gs://new-bucket",
|
|
33
|
+
"gsutil mb -c nearline gs://archive-bucket"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "rb",
|
|
38
|
+
"description": "Remove bucket",
|
|
39
|
+
"examples": [
|
|
40
|
+
"gsutil rb gs://my-bucket"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "cp",
|
|
45
|
+
"description": "Copy objects",
|
|
46
|
+
"examples": [
|
|
47
|
+
"gsutil cp file.txt gs://my-bucket/",
|
|
48
|
+
"gsutil cp gs://my-bucket/file.txt .",
|
|
49
|
+
"gsutil cp -r ./dir/ gs://my-bucket/dir/",
|
|
50
|
+
"gsutil cp gs://bucket1/file gs://bucket2/file"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "mv",
|
|
55
|
+
"description": "Move objects",
|
|
56
|
+
"examples": [
|
|
57
|
+
"gsutil mv gs://my-bucket/old.txt gs://my-bucket/new.txt",
|
|
58
|
+
"gsutil mv ./local.txt gs://my-bucket/"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "rm",
|
|
63
|
+
"description": "Remove objects",
|
|
64
|
+
"examples": [
|
|
65
|
+
"gsutil rm gs://my-bucket/file.txt",
|
|
66
|
+
"gsutil rm -r gs://my-bucket/dir/",
|
|
67
|
+
"gsutil rm gs://my-bucket/**"
|
|
68
|
+
]
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "rsync",
|
|
72
|
+
"description": "Sync directories",
|
|
73
|
+
"examples": [
|
|
74
|
+
"gsutil rsync -r ./local/ gs://my-bucket/",
|
|
75
|
+
"gsutil rsync -r -d gs://my-bucket/ ./local/"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "cat",
|
|
80
|
+
"description": "Concatenate object content",
|
|
81
|
+
"examples": [
|
|
82
|
+
"gsutil cat gs://my-bucket/file.txt"
|
|
83
|
+
]
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "stat",
|
|
87
|
+
"description": "Object statistics",
|
|
88
|
+
"examples": [
|
|
89
|
+
"gsutil stat gs://my-bucket/file.txt"
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "du",
|
|
94
|
+
"description": "Disk usage",
|
|
95
|
+
"examples": [
|
|
96
|
+
"gsutil du gs://my-bucket/",
|
|
97
|
+
"gsutil du -s gs://my-bucket/"
|
|
98
|
+
]
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "iam",
|
|
102
|
+
"description": "IAM policy management",
|
|
103
|
+
"examples": [
|
|
104
|
+
"gsutil iam get gs://my-bucket",
|
|
105
|
+
"gsutil iam ch user:user@example.com:objectViewer gs://my-bucket"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "acl",
|
|
110
|
+
"description": "Set/get ACLs",
|
|
111
|
+
"examples": [
|
|
112
|
+
"gsutil acl get gs://my-bucket",
|
|
113
|
+
"gsutil acl set public-read gs://my-bucket/file.txt"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "cors",
|
|
118
|
+
"description": "Get/set CORS configuration",
|
|
119
|
+
"examples": [
|
|
120
|
+
"gsutil cors get gs://my-bucket",
|
|
121
|
+
"gsutil cors set cors.json gs://my-bucket"
|
|
122
|
+
]
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "lifecycle",
|
|
126
|
+
"description": "Get/set lifecycle config",
|
|
127
|
+
"examples": [
|
|
128
|
+
"gsutil lifecycle get gs://my-bucket",
|
|
129
|
+
"gsutil lifecycle set lifecycle.json gs://my-bucket"
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "versioning",
|
|
134
|
+
"description": "Get/set versioning",
|
|
135
|
+
"examples": [
|
|
136
|
+
"gsutil versioning set on gs://my-bucket",
|
|
137
|
+
"gsutil versioning get gs://my-bucket"
|
|
138
|
+
]
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "signurl",
|
|
142
|
+
"description": "Generate signed URL",
|
|
143
|
+
"examples": [
|
|
144
|
+
"gsutil signurl -d 1h key.json gs://my-bucket/file.txt"
|
|
145
|
+
]
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"name": "compose",
|
|
149
|
+
"description": "Compose objects",
|
|
150
|
+
"examples": [
|
|
151
|
+
"gsutil compose gs://my-bucket/part1 gs://my-bucket/part2 gs://my-bucket/combined"
|
|
152
|
+
]
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"name": "hash",
|
|
156
|
+
"description": "Calculate hashes",
|
|
157
|
+
"examples": [
|
|
158
|
+
"gsutil hash file.txt"
|
|
159
|
+
]
|
|
160
|
+
}
|
|
161
|
+
],
|
|
162
|
+
"globalOptions": [
|
|
163
|
+
{
|
|
164
|
+
"name": "-m",
|
|
165
|
+
"description": "Multi-threaded/parallel operations"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "-q",
|
|
169
|
+
"description": "Quiet mode"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "-o",
|
|
173
|
+
"description": "Set config option",
|
|
174
|
+
"type": "string"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "-D",
|
|
178
|
+
"description": "Debug output"
|
|
179
|
+
}
|
|
180
|
+
],
|
|
181
|
+
"examples": [
|
|
182
|
+
"gsutil ls",
|
|
183
|
+
"gsutil cp file.txt gs://my-bucket/",
|
|
184
|
+
"gsutil cp -r ./dir/ gs://my-bucket/dir/",
|
|
185
|
+
"gsutil rsync -r ./local/ gs://my-bucket/",
|
|
186
|
+
"gsutil rm -r gs://my-bucket/old/",
|
|
187
|
+
"gsutil du -s gs://my-bucket/",
|
|
188
|
+
"gsutil mb -l us-central1 gs://new-bucket",
|
|
189
|
+
"gsutil -m cp -r gs://bucket/ ./local/"
|
|
190
|
+
],
|
|
191
|
+
"relatedCommands": [
|
|
192
|
+
"gcloud",
|
|
193
|
+
"s3cmd",
|
|
194
|
+
"aws",
|
|
195
|
+
"rclone"
|
|
196
|
+
]
|
|
197
|
+
}
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hcloud",
|
|
3
|
+
"description": "Hetzner Cloud CLI",
|
|
4
|
+
"category": "cloud",
|
|
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": "server",
|
|
19
|
+
"description": "Manage servers",
|
|
20
|
+
"examples": [
|
|
21
|
+
"hcloud server list",
|
|
22
|
+
"hcloud server create --name my-server --type cx21 --image ubuntu-22.04 --location nbg1",
|
|
23
|
+
"hcloud server delete my-server",
|
|
24
|
+
"hcloud server start my-server",
|
|
25
|
+
"hcloud server stop my-server",
|
|
26
|
+
"hcloud server reboot my-server",
|
|
27
|
+
"hcloud server ssh my-server",
|
|
28
|
+
"hcloud server describe my-server",
|
|
29
|
+
"hcloud server rebuild my-server --image ubuntu-22.04",
|
|
30
|
+
"hcloud server change-type my-server cx31"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "network",
|
|
35
|
+
"description": "Manage networks",
|
|
36
|
+
"examples": [
|
|
37
|
+
"hcloud network list",
|
|
38
|
+
"hcloud network create --name my-net --ip-range 10.0.0.0/16"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "firewall",
|
|
43
|
+
"description": "Manage firewalls",
|
|
44
|
+
"examples": [
|
|
45
|
+
"hcloud firewall list",
|
|
46
|
+
"hcloud firewall create --name my-fw",
|
|
47
|
+
"hcloud firewall add-rule my-fw --direction in --protocol tcp --port 22 --source-ips 0.0.0.0/0"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "volume",
|
|
52
|
+
"description": "Manage volumes",
|
|
53
|
+
"examples": [
|
|
54
|
+
"hcloud volume list",
|
|
55
|
+
"hcloud volume create --name my-vol --size 10 --server my-server"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "load-balancer",
|
|
60
|
+
"description": "Manage load balancers",
|
|
61
|
+
"examples": [
|
|
62
|
+
"hcloud load-balancer list",
|
|
63
|
+
"hcloud load-balancer create --name my-lb --type lb11 --location nbg1"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "floating-ip",
|
|
68
|
+
"description": "Manage floating IPs",
|
|
69
|
+
"examples": [
|
|
70
|
+
"hcloud floating-ip list",
|
|
71
|
+
"hcloud floating-ip create --type ipv4 --home-location nbg1",
|
|
72
|
+
"hcloud floating-ip assign floating-ip-id my-server"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "ssh-key",
|
|
77
|
+
"description": "Manage SSH keys",
|
|
78
|
+
"examples": [
|
|
79
|
+
"hcloud ssh-key list",
|
|
80
|
+
"hcloud ssh-key create --name mykey --public-key-from-file ~/.ssh/id_rsa.pub"
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "image",
|
|
85
|
+
"description": "Manage images/snapshots",
|
|
86
|
+
"examples": [
|
|
87
|
+
"hcloud image list",
|
|
88
|
+
"hcloud image describe ubuntu-22.04"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "server-type",
|
|
93
|
+
"description": "List server types",
|
|
94
|
+
"examples": [
|
|
95
|
+
"hcloud server-type list"
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"name": "location",
|
|
100
|
+
"description": "List data centers",
|
|
101
|
+
"examples": [
|
|
102
|
+
"hcloud location list"
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "datacenter",
|
|
107
|
+
"description": "List datacenters",
|
|
108
|
+
"examples": [
|
|
109
|
+
"hcloud datacenter list"
|
|
110
|
+
]
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"name": "placement-group",
|
|
114
|
+
"description": "Manage placement groups",
|
|
115
|
+
"examples": [
|
|
116
|
+
"hcloud placement-group list",
|
|
117
|
+
"hcloud placement-group create --name my-pg --type spread"
|
|
118
|
+
]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "primary-ip",
|
|
122
|
+
"description": "Manage primary IPs",
|
|
123
|
+
"examples": [
|
|
124
|
+
"hcloud primary-ip list"
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "context",
|
|
129
|
+
"description": "Manage CLI contexts",
|
|
130
|
+
"examples": [
|
|
131
|
+
"hcloud context list",
|
|
132
|
+
"hcloud context create my-project",
|
|
133
|
+
"hcloud context use my-project"
|
|
134
|
+
]
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
"globalOptions": [
|
|
138
|
+
{
|
|
139
|
+
"name": "-o",
|
|
140
|
+
"description": "Output format (json, yaml, columns)",
|
|
141
|
+
"type": "string"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "--poll-interval",
|
|
145
|
+
"description": "Polling interval for actions",
|
|
146
|
+
"type": "string"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"name": "-q",
|
|
150
|
+
"description": "Quiet mode"
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"examples": [
|
|
154
|
+
"hcloud server list",
|
|
155
|
+
"hcloud server create --name web --type cx21 --image ubuntu-22.04",
|
|
156
|
+
"hcloud server ssh web",
|
|
157
|
+
"hcloud volume list",
|
|
158
|
+
"hcloud load-balancer list",
|
|
159
|
+
"hcloud firewall list",
|
|
160
|
+
"hcloud network list",
|
|
161
|
+
"hcloud context list"
|
|
162
|
+
],
|
|
163
|
+
"relatedCommands": [
|
|
164
|
+
"doctl",
|
|
165
|
+
"civo",
|
|
166
|
+
"vultr",
|
|
167
|
+
"terraform"
|
|
168
|
+
]
|
|
169
|
+
}
|