@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,127 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "infisical",
|
|
3
|
+
"description": "Infisical CLI — open-source secret management",
|
|
4
|
+
"category": "security",
|
|
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": "login",
|
|
19
|
+
"description": "Login to Infisical",
|
|
20
|
+
"examples": [
|
|
21
|
+
"infisical login",
|
|
22
|
+
"infisical login --domain https://app.infisical.com"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "init",
|
|
27
|
+
"description": "Initialize project link",
|
|
28
|
+
"examples": [
|
|
29
|
+
"infisical init"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "run",
|
|
34
|
+
"description": "Inject secrets and run command",
|
|
35
|
+
"examples": [
|
|
36
|
+
"infisical run -- npm run dev",
|
|
37
|
+
"infisical run --env=prod -- node server.js",
|
|
38
|
+
"infisical run --path=/backend -- ./start.sh"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "secrets",
|
|
43
|
+
"description": "Manage secrets",
|
|
44
|
+
"examples": [
|
|
45
|
+
"infisical secrets",
|
|
46
|
+
"infisical secrets --env=prod",
|
|
47
|
+
"infisical secrets set MY_SECRET=value",
|
|
48
|
+
"infisical secrets get MY_SECRET",
|
|
49
|
+
"infisical secrets delete MY_SECRET",
|
|
50
|
+
"infisical secrets generate-example-env"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "export",
|
|
55
|
+
"description": "Export secrets",
|
|
56
|
+
"examples": [
|
|
57
|
+
"infisical export",
|
|
58
|
+
"infisical export --env=prod --format=json",
|
|
59
|
+
"infisical export --format=dotenv > .env"
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "vault",
|
|
64
|
+
"description": "Manage local credential vault",
|
|
65
|
+
"examples": [
|
|
66
|
+
"infisical vault set-backend file",
|
|
67
|
+
"infisical vault set-backend auto"
|
|
68
|
+
]
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "user",
|
|
72
|
+
"description": "User info",
|
|
73
|
+
"examples": [
|
|
74
|
+
"infisical user"
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "reset",
|
|
79
|
+
"description": "Reset local state",
|
|
80
|
+
"examples": [
|
|
81
|
+
"infisical reset"
|
|
82
|
+
]
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"globalOptions": [
|
|
86
|
+
{
|
|
87
|
+
"name": "--env",
|
|
88
|
+
"description": "Environment (dev, staging, prod, etc.)",
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "--path",
|
|
93
|
+
"description": "Secret path",
|
|
94
|
+
"type": "string"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "--domain",
|
|
98
|
+
"description": "Infisical instance domain",
|
|
99
|
+
"type": "string"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "--token",
|
|
103
|
+
"description": "Service token",
|
|
104
|
+
"type": "string"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "--projectId",
|
|
108
|
+
"description": "Project ID",
|
|
109
|
+
"type": "string"
|
|
110
|
+
}
|
|
111
|
+
],
|
|
112
|
+
"examples": [
|
|
113
|
+
"infisical login",
|
|
114
|
+
"infisical init",
|
|
115
|
+
"infisical run -- npm run dev",
|
|
116
|
+
"infisical secrets",
|
|
117
|
+
"infisical secrets set DB_URL=postgres://...",
|
|
118
|
+
"infisical export --format=dotenv > .env",
|
|
119
|
+
"infisical run --env=prod -- node server.js"
|
|
120
|
+
],
|
|
121
|
+
"relatedCommands": [
|
|
122
|
+
"doppler",
|
|
123
|
+
"vault",
|
|
124
|
+
"chamber",
|
|
125
|
+
"sops"
|
|
126
|
+
]
|
|
127
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "istioctl",
|
|
3
|
-
"description": "Istio service mesh
|
|
3
|
+
"description": "Istio CLI for installing and debugging the Istio service mesh",
|
|
4
4
|
"category": "containers",
|
|
5
5
|
"platforms": [
|
|
6
6
|
"linux",
|
|
@@ -18,28 +18,81 @@
|
|
|
18
18
|
"name": "install",
|
|
19
19
|
"description": "Install Istio",
|
|
20
20
|
"examples": [
|
|
21
|
-
"istioctl install
|
|
21
|
+
"istioctl install",
|
|
22
|
+
"istioctl install --set profile=demo",
|
|
23
|
+
"istioctl install --set profile=minimal",
|
|
24
|
+
"istioctl install -f custom-operator.yaml"
|
|
22
25
|
]
|
|
23
26
|
},
|
|
24
27
|
{
|
|
25
|
-
"name": "
|
|
26
|
-
"description": "
|
|
28
|
+
"name": "manifest",
|
|
29
|
+
"description": "Generate or diff manifests",
|
|
27
30
|
"examples": [
|
|
28
|
-
"istioctl
|
|
31
|
+
"istioctl manifest generate",
|
|
32
|
+
"istioctl manifest generate --set profile=demo > istio.yaml",
|
|
33
|
+
"istioctl manifest diff a.yaml b.yaml"
|
|
29
34
|
]
|
|
30
35
|
},
|
|
31
36
|
{
|
|
32
|
-
"name": "
|
|
33
|
-
"description": "
|
|
37
|
+
"name": "profile",
|
|
38
|
+
"description": "Manage installation profiles",
|
|
39
|
+
"examples": [
|
|
40
|
+
"istioctl profile list",
|
|
41
|
+
"istioctl profile dump demo",
|
|
42
|
+
"istioctl profile diff demo default"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "verify-install",
|
|
47
|
+
"description": "Verify installation",
|
|
48
|
+
"examples": [
|
|
49
|
+
"istioctl verify-install"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "uninstall",
|
|
54
|
+
"description": "Uninstall Istio",
|
|
55
|
+
"examples": [
|
|
56
|
+
"istioctl uninstall --purge",
|
|
57
|
+
"istioctl uninstall --revision canary"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "upgrade",
|
|
62
|
+
"description": "Upgrade Istio",
|
|
63
|
+
"examples": [
|
|
64
|
+
"istioctl upgrade"
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "analyze",
|
|
69
|
+
"description": "Analyze mesh config for issues",
|
|
34
70
|
"examples": [
|
|
35
|
-
"istioctl
|
|
71
|
+
"istioctl analyze",
|
|
72
|
+
"istioctl analyze -n my-ns",
|
|
73
|
+
"istioctl analyze -A",
|
|
74
|
+
"istioctl analyze my-manifest.yaml"
|
|
36
75
|
]
|
|
37
76
|
},
|
|
38
77
|
{
|
|
39
78
|
"name": "proxy-config",
|
|
40
|
-
"description": "
|
|
79
|
+
"description": "Inspect Envoy proxy config",
|
|
80
|
+
"examples": [
|
|
81
|
+
"istioctl proxy-config cluster my-pod",
|
|
82
|
+
"istioctl proxy-config route my-pod",
|
|
83
|
+
"istioctl proxy-config listener my-pod",
|
|
84
|
+
"istioctl proxy-config endpoint my-pod",
|
|
85
|
+
"istioctl proxy-config bootstrap my-pod",
|
|
86
|
+
"istioctl proxy-config secret my-pod",
|
|
87
|
+
"istioctl proxy-config log my-pod --level debug"
|
|
88
|
+
]
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "proxy-status",
|
|
92
|
+
"description": "Show proxy sync status",
|
|
41
93
|
"examples": [
|
|
42
|
-
"istioctl proxy-
|
|
94
|
+
"istioctl proxy-status",
|
|
95
|
+
"istioctl proxy-status my-pod"
|
|
43
96
|
]
|
|
44
97
|
},
|
|
45
98
|
{
|
|
@@ -47,28 +100,64 @@
|
|
|
47
100
|
"description": "Open web dashboards",
|
|
48
101
|
"examples": [
|
|
49
102
|
"istioctl dashboard kiali",
|
|
50
|
-
"istioctl dashboard grafana"
|
|
103
|
+
"istioctl dashboard grafana",
|
|
104
|
+
"istioctl dashboard jaeger",
|
|
105
|
+
"istioctl dashboard prometheus",
|
|
106
|
+
"istioctl dashboard envoy my-pod",
|
|
107
|
+
"istioctl dashboard controlz istiod-xxx"
|
|
51
108
|
]
|
|
52
109
|
},
|
|
53
110
|
{
|
|
54
111
|
"name": "kube-inject",
|
|
55
|
-
"description": "Inject
|
|
112
|
+
"description": "Inject sidecar into manifests",
|
|
56
113
|
"examples": [
|
|
57
|
-
"istioctl kube-inject -f deployment.yaml | kubectl apply -f -"
|
|
114
|
+
"istioctl kube-inject -f deployment.yaml | kubectl apply -f -",
|
|
115
|
+
"kubectl get deploy my-deploy -o yaml | istioctl kube-inject -f - | kubectl apply -f -"
|
|
58
116
|
]
|
|
59
117
|
},
|
|
60
118
|
{
|
|
61
|
-
"name": "
|
|
62
|
-
"description": "
|
|
119
|
+
"name": "experimental",
|
|
120
|
+
"description": "Experimental commands",
|
|
63
121
|
"examples": [
|
|
64
|
-
"istioctl
|
|
122
|
+
"istioctl experimental waypoint generate",
|
|
123
|
+
"istioctl experimental waypoint apply"
|
|
65
124
|
]
|
|
66
125
|
},
|
|
67
126
|
{
|
|
68
|
-
"name": "
|
|
69
|
-
"description": "
|
|
127
|
+
"name": "tag",
|
|
128
|
+
"description": "Manage revision tags",
|
|
129
|
+
"examples": [
|
|
130
|
+
"istioctl tag set prod --revision 1-17",
|
|
131
|
+
"istioctl tag list"
|
|
132
|
+
]
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"name": "remote-clusters",
|
|
136
|
+
"description": "List remote clusters",
|
|
137
|
+
"examples": [
|
|
138
|
+
"istioctl remote-clusters"
|
|
139
|
+
]
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "bug-report",
|
|
143
|
+
"description": "Generate debug report",
|
|
70
144
|
"examples": [
|
|
71
|
-
"istioctl
|
|
145
|
+
"istioctl bug-report"
|
|
146
|
+
]
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"name": "admin",
|
|
150
|
+
"description": "Admin utilities",
|
|
151
|
+
"examples": [
|
|
152
|
+
"istioctl admin log --level debug"
|
|
153
|
+
]
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"name": "version",
|
|
157
|
+
"description": "Show version",
|
|
158
|
+
"examples": [
|
|
159
|
+
"istioctl version",
|
|
160
|
+
"istioctl version --remote"
|
|
72
161
|
]
|
|
73
162
|
}
|
|
74
163
|
],
|
|
@@ -79,27 +168,44 @@
|
|
|
79
168
|
"type": "string"
|
|
80
169
|
},
|
|
81
170
|
{
|
|
82
|
-
"name": "
|
|
171
|
+
"name": "--kubeconfig",
|
|
172
|
+
"description": "Kubeconfig path",
|
|
173
|
+
"type": "string"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"name": "--namespace",
|
|
177
|
+
"short": "-n",
|
|
83
178
|
"description": "Namespace",
|
|
84
179
|
"type": "string"
|
|
85
180
|
},
|
|
86
181
|
{
|
|
87
182
|
"name": "--istioNamespace",
|
|
183
|
+
"short": "-i",
|
|
88
184
|
"description": "Istio system namespace",
|
|
89
185
|
"type": "string"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"name": "--revision",
|
|
189
|
+
"description": "Istio revision",
|
|
190
|
+
"type": "string"
|
|
90
191
|
}
|
|
91
192
|
],
|
|
92
193
|
"examples": [
|
|
93
194
|
"istioctl install --set profile=demo",
|
|
94
195
|
"istioctl analyze",
|
|
196
|
+
"istioctl proxy-config route my-pod",
|
|
95
197
|
"istioctl proxy-status",
|
|
96
198
|
"istioctl dashboard kiali",
|
|
97
|
-
"istioctl
|
|
199
|
+
"istioctl kube-inject -f deployment.yaml | kubectl apply -f -",
|
|
200
|
+
"istioctl manifest generate --set profile=demo",
|
|
201
|
+
"istioctl profile list",
|
|
202
|
+
"istioctl verify-install",
|
|
203
|
+
"istioctl version"
|
|
98
204
|
],
|
|
99
205
|
"relatedCommands": [
|
|
100
206
|
"kubectl",
|
|
101
207
|
"helm",
|
|
102
|
-
"
|
|
103
|
-
"
|
|
208
|
+
"linkerd",
|
|
209
|
+
"envoy"
|
|
104
210
|
]
|
|
105
211
|
}
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "k3d",
|
|
3
|
+
"description": "k3d — run k3s Kubernetes clusters in Docker",
|
|
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": "cluster create",
|
|
19
|
+
"description": "Create a cluster",
|
|
20
|
+
"examples": [
|
|
21
|
+
"k3d cluster create",
|
|
22
|
+
"k3d cluster create my-cluster",
|
|
23
|
+
"k3d cluster create my-cluster --agents 3",
|
|
24
|
+
"k3d cluster create my-cluster --servers 3 --agents 3",
|
|
25
|
+
"k3d cluster create my-cluster -p '8080:80@loadbalancer'",
|
|
26
|
+
"k3d cluster create my-cluster --api-port 6550",
|
|
27
|
+
"k3d cluster create my-cluster --image rancher/k3s:v1.27.4-k3s1",
|
|
28
|
+
"k3d cluster create my-cluster --volume /my/path:/some/path@all",
|
|
29
|
+
"k3d cluster create my-cluster --registry-create my-registry:0.0.0.0:5000"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "cluster list",
|
|
34
|
+
"description": "List clusters",
|
|
35
|
+
"examples": [
|
|
36
|
+
"k3d cluster list"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "cluster delete",
|
|
41
|
+
"description": "Delete cluster(s)",
|
|
42
|
+
"examples": [
|
|
43
|
+
"k3d cluster delete my-cluster",
|
|
44
|
+
"k3d cluster delete --all"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "cluster start",
|
|
49
|
+
"description": "Start a stopped cluster",
|
|
50
|
+
"examples": [
|
|
51
|
+
"k3d cluster start my-cluster"
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "cluster stop",
|
|
56
|
+
"description": "Stop a running cluster",
|
|
57
|
+
"examples": [
|
|
58
|
+
"k3d cluster stop my-cluster"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "node create",
|
|
63
|
+
"description": "Create new node",
|
|
64
|
+
"examples": [
|
|
65
|
+
"k3d node create my-node --cluster my-cluster --role agent"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "node list",
|
|
70
|
+
"description": "List nodes",
|
|
71
|
+
"examples": [
|
|
72
|
+
"k3d node list"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "node delete",
|
|
77
|
+
"description": "Delete node",
|
|
78
|
+
"examples": [
|
|
79
|
+
"k3d node delete my-node"
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "registry create",
|
|
84
|
+
"description": "Create a local registry",
|
|
85
|
+
"examples": [
|
|
86
|
+
"k3d registry create my-registry --port 5000"
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "registry list",
|
|
91
|
+
"description": "List registries",
|
|
92
|
+
"examples": [
|
|
93
|
+
"k3d registry list"
|
|
94
|
+
]
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "registry delete",
|
|
98
|
+
"description": "Delete registry",
|
|
99
|
+
"examples": [
|
|
100
|
+
"k3d registry delete my-registry"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "image import",
|
|
105
|
+
"description": "Import images into cluster",
|
|
106
|
+
"examples": [
|
|
107
|
+
"k3d image import my-image:latest -c my-cluster"
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "kubeconfig get",
|
|
112
|
+
"description": "Get kubeconfig",
|
|
113
|
+
"examples": [
|
|
114
|
+
"k3d kubeconfig get my-cluster",
|
|
115
|
+
"k3d kubeconfig merge my-cluster --kubeconfig-merge-default"
|
|
116
|
+
]
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"name": "version",
|
|
120
|
+
"description": "Show version",
|
|
121
|
+
"examples": [
|
|
122
|
+
"k3d version"
|
|
123
|
+
]
|
|
124
|
+
}
|
|
125
|
+
],
|
|
126
|
+
"globalOptions": [
|
|
127
|
+
{
|
|
128
|
+
"name": "--verbose",
|
|
129
|
+
"description": "Enable verbose output"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "--timestamps",
|
|
133
|
+
"description": "Enable timestamps in logs"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "--trace",
|
|
137
|
+
"description": "Enable trace logging"
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"examples": [
|
|
141
|
+
"k3d cluster create my-cluster",
|
|
142
|
+
"k3d cluster create my-cluster --agents 3 -p '8080:80@loadbalancer'",
|
|
143
|
+
"k3d cluster list",
|
|
144
|
+
"k3d cluster delete my-cluster",
|
|
145
|
+
"k3d image import my-image:latest -c my-cluster",
|
|
146
|
+
"k3d kubeconfig merge my-cluster --kubeconfig-merge-default",
|
|
147
|
+
"k3d registry create my-registry --port 5000"
|
|
148
|
+
],
|
|
149
|
+
"relatedCommands": [
|
|
150
|
+
"k3s",
|
|
151
|
+
"kubectl",
|
|
152
|
+
"docker",
|
|
153
|
+
"kind",
|
|
154
|
+
"minikube"
|
|
155
|
+
]
|
|
156
|
+
}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "k3s",
|
|
3
|
+
"description": "Lightweight Kubernetes — production-ready, easy to install",
|
|
4
|
+
"category": "containers",
|
|
5
|
+
"platforms": [
|
|
6
|
+
"linux"
|
|
7
|
+
],
|
|
8
|
+
"shells": [
|
|
9
|
+
"bash",
|
|
10
|
+
"zsh",
|
|
11
|
+
"fish"
|
|
12
|
+
],
|
|
13
|
+
"subcommands": [
|
|
14
|
+
{
|
|
15
|
+
"name": "server",
|
|
16
|
+
"description": "Start k3s server (control plane)",
|
|
17
|
+
"examples": [
|
|
18
|
+
"k3s server",
|
|
19
|
+
"k3s server --disable traefik",
|
|
20
|
+
"k3s server --write-kubeconfig-mode 644",
|
|
21
|
+
"k3s server --cluster-init",
|
|
22
|
+
"k3s server --tls-san my-server.example.com",
|
|
23
|
+
"sudo k3s server &"
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "agent",
|
|
28
|
+
"description": "Start k3s agent (worker node)",
|
|
29
|
+
"examples": [
|
|
30
|
+
"k3s agent --server https://server:6443 --token mytoken"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "kubectl",
|
|
35
|
+
"description": "Run kubectl commands",
|
|
36
|
+
"examples": [
|
|
37
|
+
"k3s kubectl get nodes",
|
|
38
|
+
"k3s kubectl get pods -A",
|
|
39
|
+
"k3s kubectl apply -f manifest.yaml"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "crictl",
|
|
44
|
+
"description": "Container runtime CLI",
|
|
45
|
+
"examples": [
|
|
46
|
+
"k3s crictl ps",
|
|
47
|
+
"k3s crictl images"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "ctr",
|
|
52
|
+
"description": "containerd CLI",
|
|
53
|
+
"examples": [
|
|
54
|
+
"k3s ctr images ls",
|
|
55
|
+
"k3s ctr containers list"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "check-config",
|
|
60
|
+
"description": "Check system config",
|
|
61
|
+
"examples": [
|
|
62
|
+
"k3s check-config"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "token",
|
|
67
|
+
"description": "Manage join tokens",
|
|
68
|
+
"examples": [
|
|
69
|
+
"k3s token create",
|
|
70
|
+
"k3s token list",
|
|
71
|
+
"k3s token delete token-id"
|
|
72
|
+
]
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "certificate",
|
|
76
|
+
"description": "Manage certificates",
|
|
77
|
+
"examples": [
|
|
78
|
+
"k3s certificate rotate"
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "etcd-snapshot",
|
|
83
|
+
"description": "Manage etcd snapshots",
|
|
84
|
+
"examples": [
|
|
85
|
+
"k3s etcd-snapshot save",
|
|
86
|
+
"k3s etcd-snapshot list",
|
|
87
|
+
"k3s etcd-snapshot delete snapshot-name"
|
|
88
|
+
]
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "secrets-encrypt",
|
|
92
|
+
"description": "Manage secrets encryption",
|
|
93
|
+
"examples": [
|
|
94
|
+
"k3s secrets-encrypt status",
|
|
95
|
+
"k3s secrets-encrypt enable",
|
|
96
|
+
"k3s secrets-encrypt disable"
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "completion",
|
|
101
|
+
"description": "Shell completion",
|
|
102
|
+
"examples": [
|
|
103
|
+
"source <(k3s completion bash)"
|
|
104
|
+
]
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
"globalOptions": [
|
|
108
|
+
{
|
|
109
|
+
"name": "--debug",
|
|
110
|
+
"description": "Enable debug logging"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"name": "--data-dir",
|
|
114
|
+
"short": "-d",
|
|
115
|
+
"description": "Data directory (default: /var/lib/rancher/k3s)",
|
|
116
|
+
"type": "string"
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
"examples": [
|
|
120
|
+
"curl -sfL https://get.k3s.io | sh -",
|
|
121
|
+
"k3s kubectl get nodes",
|
|
122
|
+
"k3s server --disable traefik",
|
|
123
|
+
"k3s agent --server https://server:6443 --token mytoken",
|
|
124
|
+
"k3s etcd-snapshot save",
|
|
125
|
+
"k3s token create",
|
|
126
|
+
"k3s check-config"
|
|
127
|
+
],
|
|
128
|
+
"relatedCommands": [
|
|
129
|
+
"kubectl",
|
|
130
|
+
"k3d",
|
|
131
|
+
"helm",
|
|
132
|
+
"rancher"
|
|
133
|
+
]
|
|
134
|
+
}
|