@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,98 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "kubeconform",
|
|
3
|
+
"description": "Kubernetes manifest validator using JSON schemas",
|
|
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": "(none — use directly)",
|
|
19
|
+
"description": "Validate Kubernetes manifests",
|
|
20
|
+
"examples": [
|
|
21
|
+
"kubeconform manifest.yaml",
|
|
22
|
+
"kubeconform -summary ./manifests/",
|
|
23
|
+
"cat manifest.yaml | kubeconform",
|
|
24
|
+
"kubeconform -strict manifest.yaml",
|
|
25
|
+
"kubeconform -kubernetes-version 1.27.0 manifest.yaml",
|
|
26
|
+
"kubeconform -output json manifest.yaml",
|
|
27
|
+
"kubeconform -schema-location 'https://raw.githubusercontent.com/datreeio/CRDs-catalog/main/{{.Group}}/{{.ResourceKind}}_{{.ResourceAPIVersion}}.json' -schema-location default manifest.yaml"
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"globalOptions": [
|
|
32
|
+
{
|
|
33
|
+
"name": "-kubernetes-version",
|
|
34
|
+
"description": "Kubernetes version for validation",
|
|
35
|
+
"type": "string"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "-strict",
|
|
39
|
+
"description": "Disallow additional properties"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "-summary",
|
|
43
|
+
"description": "Print summary at end"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "-output",
|
|
47
|
+
"description": "Output format (text, json, tap, junit)",
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "-schema-location",
|
|
52
|
+
"description": "Schema location template",
|
|
53
|
+
"type": "string"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "-ignore-missing-schemas",
|
|
57
|
+
"description": "Skip unknown resource types"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "-skip",
|
|
61
|
+
"description": "Comma-separated kinds to skip",
|
|
62
|
+
"type": "string"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "-reject",
|
|
66
|
+
"description": "Comma-separated kinds to reject",
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "-n",
|
|
71
|
+
"description": "Number of goroutines",
|
|
72
|
+
"type": "number"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "-cache",
|
|
76
|
+
"description": "Cache directory for schemas",
|
|
77
|
+
"type": "string"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "-verbose",
|
|
81
|
+
"description": "Verbose output"
|
|
82
|
+
}
|
|
83
|
+
],
|
|
84
|
+
"examples": [
|
|
85
|
+
"kubeconform manifest.yaml",
|
|
86
|
+
"kubeconform -summary ./manifests/",
|
|
87
|
+
"kubeconform -strict -kubernetes-version 1.27.0 manifest.yaml",
|
|
88
|
+
"kubeconform -output json manifest.yaml",
|
|
89
|
+
"kubeconform -ignore-missing-schemas -summary ./manifests/",
|
|
90
|
+
"cat deploy.yaml | kubeconform"
|
|
91
|
+
],
|
|
92
|
+
"relatedCommands": [
|
|
93
|
+
"kubectl",
|
|
94
|
+
"kubeval",
|
|
95
|
+
"kube-score",
|
|
96
|
+
"helm"
|
|
97
|
+
]
|
|
98
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "kubectx",
|
|
3
|
+
"description": "Switch between Kubernetes contexts quickly",
|
|
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": "(none — use directly)",
|
|
19
|
+
"description": "List or switch contexts",
|
|
20
|
+
"examples": [
|
|
21
|
+
"kubectx",
|
|
22
|
+
"kubectx my-context",
|
|
23
|
+
"kubectx -",
|
|
24
|
+
"kubectx -c",
|
|
25
|
+
"kubectx -d old-context",
|
|
26
|
+
"kubectx new-name=old-name"
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"globalOptions": [
|
|
31
|
+
{
|
|
32
|
+
"name": "-c",
|
|
33
|
+
"description": "Show current context"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "-d",
|
|
37
|
+
"description": "Delete context",
|
|
38
|
+
"type": "string"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "-u",
|
|
42
|
+
"description": "Unset current context"
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"examples": [
|
|
46
|
+
"kubectx",
|
|
47
|
+
"kubectx my-context",
|
|
48
|
+
"kubectx -",
|
|
49
|
+
"kubectx -c",
|
|
50
|
+
"kubectx -d old-context",
|
|
51
|
+
"kubectx new-name=old-name"
|
|
52
|
+
],
|
|
53
|
+
"relatedCommands": [
|
|
54
|
+
"kubectl",
|
|
55
|
+
"kubens",
|
|
56
|
+
"k9s"
|
|
57
|
+
]
|
|
58
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "kubens",
|
|
3
|
+
"description": "Switch between Kubernetes namespaces quickly",
|
|
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": "(none — use directly)",
|
|
19
|
+
"description": "List or switch namespaces",
|
|
20
|
+
"examples": [
|
|
21
|
+
"kubens",
|
|
22
|
+
"kubens my-namespace",
|
|
23
|
+
"kubens -",
|
|
24
|
+
"kubens -c"
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"globalOptions": [
|
|
29
|
+
{
|
|
30
|
+
"name": "-c",
|
|
31
|
+
"description": "Show current namespace"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"examples": [
|
|
35
|
+
"kubens",
|
|
36
|
+
"kubens my-namespace",
|
|
37
|
+
"kubens -",
|
|
38
|
+
"kubens -c"
|
|
39
|
+
],
|
|
40
|
+
"relatedCommands": [
|
|
41
|
+
"kubectl",
|
|
42
|
+
"kubectx",
|
|
43
|
+
"k9s"
|
|
44
|
+
]
|
|
45
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kustomize",
|
|
3
|
-
"description": "
|
|
3
|
+
"description": "Kustomize — customize Kubernetes YAML configurations",
|
|
4
4
|
"category": "containers",
|
|
5
5
|
"platforms": [
|
|
6
6
|
"linux",
|
|
@@ -16,55 +16,120 @@
|
|
|
16
16
|
"subcommands": [
|
|
17
17
|
{
|
|
18
18
|
"name": "build",
|
|
19
|
-
"description": "Build kustomization",
|
|
19
|
+
"description": "Build kustomization target",
|
|
20
20
|
"examples": [
|
|
21
21
|
"kustomize build .",
|
|
22
|
-
"kustomize build overlays/production"
|
|
22
|
+
"kustomize build ./overlays/production",
|
|
23
|
+
"kustomize build . | kubectl apply -f -",
|
|
24
|
+
"kustomize build --enable-helm .",
|
|
25
|
+
"kustomize build --load-restrictor LoadRestrictionsNone ."
|
|
23
26
|
]
|
|
24
27
|
},
|
|
25
28
|
{
|
|
26
29
|
"name": "edit",
|
|
27
|
-
"description": "Edit kustomization",
|
|
30
|
+
"description": "Edit kustomization file",
|
|
28
31
|
"examples": [
|
|
29
|
-
"kustomize edit add resource
|
|
30
|
-
"kustomize edit
|
|
32
|
+
"kustomize edit add resource deployment.yaml",
|
|
33
|
+
"kustomize edit add configmap my-cm --from-literal=key=value",
|
|
34
|
+
"kustomize edit set namespace production",
|
|
35
|
+
"kustomize edit set image my-image=my-image:v2",
|
|
36
|
+
"kustomize edit add patch --path patch.yaml",
|
|
37
|
+
"kustomize edit set nameprefix prod-",
|
|
38
|
+
"kustomize edit add label app:myapp",
|
|
39
|
+
"kustomize edit add annotation team:backend",
|
|
40
|
+
"kustomize edit remove resource old.yaml"
|
|
31
41
|
]
|
|
32
42
|
},
|
|
33
43
|
{
|
|
34
44
|
"name": "create",
|
|
35
|
-
"description": "Create
|
|
45
|
+
"description": "Create kustomization file",
|
|
36
46
|
"examples": [
|
|
47
|
+
"kustomize create",
|
|
48
|
+
"kustomize create --resources deployment.yaml,service.yaml",
|
|
37
49
|
"kustomize create --autodetect"
|
|
38
50
|
]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "cfg",
|
|
54
|
+
"description": "Config function commands",
|
|
55
|
+
"examples": [
|
|
56
|
+
"kustomize cfg tree .",
|
|
57
|
+
"kustomize cfg grep 'kind=Deployment' .",
|
|
58
|
+
"kustomize cfg cat .",
|
|
59
|
+
"kustomize cfg count .",
|
|
60
|
+
"kustomize cfg fmt ."
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "fn",
|
|
65
|
+
"description": "Function commands",
|
|
66
|
+
"examples": [
|
|
67
|
+
"kustomize fn run .",
|
|
68
|
+
"kustomize fn source .",
|
|
69
|
+
"kustomize fn sink .",
|
|
70
|
+
"kustomize fn wrap ."
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "localize",
|
|
75
|
+
"description": "Localize remote references",
|
|
76
|
+
"examples": [
|
|
77
|
+
"kustomize localize . ./localized"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "completion",
|
|
82
|
+
"description": "Generate shell completion",
|
|
83
|
+
"examples": [
|
|
84
|
+
"source <(kustomize completion bash)"
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "version",
|
|
89
|
+
"description": "Print version",
|
|
90
|
+
"examples": [
|
|
91
|
+
"kustomize version"
|
|
92
|
+
]
|
|
39
93
|
}
|
|
40
94
|
],
|
|
41
95
|
"globalOptions": [
|
|
42
96
|
{
|
|
43
97
|
"name": "--enable-helm",
|
|
44
|
-
"description": "Enable Helm chart
|
|
98
|
+
"description": "Enable Helm chart inflation"
|
|
45
99
|
},
|
|
46
100
|
{
|
|
47
101
|
"name": "--load-restrictor",
|
|
48
|
-
"description": "Load
|
|
102
|
+
"description": "Load restrictions",
|
|
103
|
+
"type": "string"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "--reorder",
|
|
107
|
+
"description": "Reorder output (legacy, none)",
|
|
49
108
|
"type": "string"
|
|
50
109
|
},
|
|
51
110
|
{
|
|
52
|
-
"name": "
|
|
53
|
-
"
|
|
111
|
+
"name": "--output",
|
|
112
|
+
"short": "-o",
|
|
113
|
+
"description": "Output to file",
|
|
54
114
|
"type": "string"
|
|
55
115
|
}
|
|
56
116
|
],
|
|
57
117
|
"examples": [
|
|
58
118
|
"kustomize build .",
|
|
59
|
-
"kustomize build
|
|
60
|
-
"kustomize edit set image
|
|
61
|
-
"kustomize
|
|
62
|
-
"kustomize
|
|
119
|
+
"kustomize build ./overlays/production | kubectl apply -f -",
|
|
120
|
+
"kustomize edit set image my-image=my-image:v2",
|
|
121
|
+
"kustomize edit set namespace production",
|
|
122
|
+
"kustomize edit add resource deployment.yaml",
|
|
123
|
+
"kustomize create --autodetect",
|
|
124
|
+
"kubectl apply -k .",
|
|
125
|
+
"kustomize build --enable-helm .",
|
|
126
|
+
"kustomize cfg tree .",
|
|
127
|
+
"kustomize version"
|
|
63
128
|
],
|
|
64
129
|
"relatedCommands": [
|
|
65
130
|
"kubectl",
|
|
66
131
|
"helm",
|
|
67
|
-
"
|
|
68
|
-
"
|
|
132
|
+
"flux",
|
|
133
|
+
"argocd"
|
|
69
134
|
]
|
|
70
135
|
}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lightsail",
|
|
3
|
+
"description": "AWS Lightsail CLI (via aws lightsail)",
|
|
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": "get-instances",
|
|
19
|
+
"description": "List instances",
|
|
20
|
+
"examples": [
|
|
21
|
+
"aws lightsail get-instances"
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "create-instances",
|
|
26
|
+
"description": "Create instance",
|
|
27
|
+
"examples": [
|
|
28
|
+
"aws lightsail create-instances --instance-names my-instance --availability-zone us-east-1a --blueprint-id ubuntu_22_04 --bundle-id nano_3_0"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "delete-instance",
|
|
33
|
+
"description": "Delete instance",
|
|
34
|
+
"examples": [
|
|
35
|
+
"aws lightsail delete-instance --instance-name my-instance"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "start-instance",
|
|
40
|
+
"description": "Start instance",
|
|
41
|
+
"examples": [
|
|
42
|
+
"aws lightsail start-instance --instance-name my-instance"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "stop-instance",
|
|
47
|
+
"description": "Stop instance",
|
|
48
|
+
"examples": [
|
|
49
|
+
"aws lightsail stop-instance --instance-name my-instance"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "reboot-instance",
|
|
54
|
+
"description": "Reboot instance",
|
|
55
|
+
"examples": [
|
|
56
|
+
"aws lightsail reboot-instance --instance-name my-instance"
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "get-instance-access-details",
|
|
61
|
+
"description": "Get SSH access details",
|
|
62
|
+
"examples": [
|
|
63
|
+
"aws lightsail get-instance-access-details --instance-name my-instance"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "create-container-service",
|
|
68
|
+
"description": "Create container service",
|
|
69
|
+
"examples": [
|
|
70
|
+
"aws lightsail create-container-service --service-name my-svc --power small --scale 1"
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "get-container-services",
|
|
75
|
+
"description": "List container services",
|
|
76
|
+
"examples": [
|
|
77
|
+
"aws lightsail get-container-services"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "get-blueprints",
|
|
82
|
+
"description": "List available blueprints",
|
|
83
|
+
"examples": [
|
|
84
|
+
"aws lightsail get-blueprints"
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "get-bundles",
|
|
89
|
+
"description": "List available bundles",
|
|
90
|
+
"examples": [
|
|
91
|
+
"aws lightsail get-bundles"
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "get-static-ips",
|
|
96
|
+
"description": "List static IPs",
|
|
97
|
+
"examples": [
|
|
98
|
+
"aws lightsail get-static-ips"
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "allocate-static-ip",
|
|
103
|
+
"description": "Allocate a static IP",
|
|
104
|
+
"examples": [
|
|
105
|
+
"aws lightsail allocate-static-ip --static-ip-name my-ip"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "attach-static-ip",
|
|
110
|
+
"description": "Attach static IP to instance",
|
|
111
|
+
"examples": [
|
|
112
|
+
"aws lightsail attach-static-ip --static-ip-name my-ip --instance-name my-instance"
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "create-key-pair",
|
|
117
|
+
"description": "Create SSH key pair",
|
|
118
|
+
"examples": [
|
|
119
|
+
"aws lightsail create-key-pair --key-pair-name my-key"
|
|
120
|
+
]
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "get-relational-databases",
|
|
124
|
+
"description": "List databases",
|
|
125
|
+
"examples": [
|
|
126
|
+
"aws lightsail get-relational-databases"
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "create-relational-database",
|
|
131
|
+
"description": "Create database",
|
|
132
|
+
"examples": [
|
|
133
|
+
"aws lightsail create-relational-database --relational-database-name my-db --availability-zone us-east-1a --relational-database-blueprint-id mysql_8_0 --relational-database-bundle-id micro_2_0 --master-database-name mydb --master-username admin"
|
|
134
|
+
]
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
"globalOptions": [
|
|
138
|
+
{
|
|
139
|
+
"name": "--region",
|
|
140
|
+
"description": "AWS region",
|
|
141
|
+
"type": "string"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "--output",
|
|
145
|
+
"description": "Output format",
|
|
146
|
+
"type": "string"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"name": "--profile",
|
|
150
|
+
"description": "AWS profile",
|
|
151
|
+
"type": "string"
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
"examples": [
|
|
155
|
+
"aws lightsail get-instances",
|
|
156
|
+
"aws lightsail create-instances --instance-names web --blueprint-id ubuntu_22_04 --bundle-id nano_3_0 --availability-zone us-east-1a",
|
|
157
|
+
"aws lightsail get-blueprints",
|
|
158
|
+
"aws lightsail get-bundles",
|
|
159
|
+
"aws lightsail get-instance-access-details --instance-name web",
|
|
160
|
+
"aws lightsail create-container-service --service-name api --power small --scale 1"
|
|
161
|
+
],
|
|
162
|
+
"relatedCommands": [
|
|
163
|
+
"aws",
|
|
164
|
+
"eb",
|
|
165
|
+
"heroku",
|
|
166
|
+
"doctl"
|
|
167
|
+
]
|
|
168
|
+
}
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "linkerd",
|
|
3
|
+
"description": "Linkerd service mesh CLI",
|
|
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": "install",
|
|
19
|
+
"description": "Generate Linkerd install manifest",
|
|
20
|
+
"examples": [
|
|
21
|
+
"linkerd install | kubectl apply -f -",
|
|
22
|
+
"linkerd install --crds | kubectl apply -f -"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "check",
|
|
27
|
+
"description": "Check installation health",
|
|
28
|
+
"examples": [
|
|
29
|
+
"linkerd check",
|
|
30
|
+
"linkerd check --pre",
|
|
31
|
+
"linkerd check --proxy"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "inject",
|
|
36
|
+
"description": "Inject sidecar proxy",
|
|
37
|
+
"examples": [
|
|
38
|
+
"linkerd inject deployment.yaml | kubectl apply -f -",
|
|
39
|
+
"cat deploy.yaml | linkerd inject - | kubectl apply -f -"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "uninject",
|
|
44
|
+
"description": "Remove sidecar proxy",
|
|
45
|
+
"examples": [
|
|
46
|
+
"linkerd uninject deployment.yaml | kubectl apply -f -"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "stat",
|
|
51
|
+
"description": "Traffic statistics",
|
|
52
|
+
"examples": [
|
|
53
|
+
"linkerd stat deploy",
|
|
54
|
+
"linkerd stat deploy -n my-ns",
|
|
55
|
+
"linkerd stat po -n my-ns --from deploy/frontend"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "top",
|
|
60
|
+
"description": "Real-time traffic view",
|
|
61
|
+
"examples": [
|
|
62
|
+
"linkerd top deploy/my-app",
|
|
63
|
+
"linkerd top deploy/my-app --namespace my-ns"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "tap",
|
|
68
|
+
"description": "Tap live traffic",
|
|
69
|
+
"examples": [
|
|
70
|
+
"linkerd tap deploy/my-app",
|
|
71
|
+
"linkerd tap ns/my-ns --to deploy/backend"
|
|
72
|
+
]
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "routes",
|
|
76
|
+
"description": "per-route metrics",
|
|
77
|
+
"examples": [
|
|
78
|
+
"linkerd routes deploy/my-app",
|
|
79
|
+
"linkerd routes deploy/my-app --to svc/backend"
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "edges",
|
|
84
|
+
"description": "Show edges between resources",
|
|
85
|
+
"examples": [
|
|
86
|
+
"linkerd edges deploy -n my-ns"
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "profile",
|
|
91
|
+
"description": "Manage service profiles",
|
|
92
|
+
"examples": [
|
|
93
|
+
"linkerd profile --open-api spec.yaml my-svc | kubectl apply -f -"
|
|
94
|
+
]
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "viz",
|
|
98
|
+
"description": "Viz extension commands",
|
|
99
|
+
"examples": [
|
|
100
|
+
"linkerd viz install | kubectl apply -f -",
|
|
101
|
+
"linkerd viz dashboard",
|
|
102
|
+
"linkerd viz stat deploy"
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "multicluster",
|
|
107
|
+
"description": "Multi-cluster commands",
|
|
108
|
+
"examples": [
|
|
109
|
+
"linkerd multicluster install | kubectl apply -f -",
|
|
110
|
+
"linkerd multicluster link --cluster-name target"
|
|
111
|
+
]
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "upgrade",
|
|
115
|
+
"description": "Upgrade Linkerd",
|
|
116
|
+
"examples": [
|
|
117
|
+
"linkerd upgrade | kubectl apply -f -"
|
|
118
|
+
]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "uninstall",
|
|
122
|
+
"description": "Uninstall Linkerd",
|
|
123
|
+
"examples": [
|
|
124
|
+
"linkerd uninstall | kubectl delete -f -"
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "version",
|
|
129
|
+
"description": "Show version",
|
|
130
|
+
"examples": [
|
|
131
|
+
"linkerd version"
|
|
132
|
+
]
|
|
133
|
+
}
|
|
134
|
+
],
|
|
135
|
+
"globalOptions": [
|
|
136
|
+
{
|
|
137
|
+
"name": "--context",
|
|
138
|
+
"description": "Kubernetes context",
|
|
139
|
+
"type": "string"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "--namespace",
|
|
143
|
+
"short": "-n",
|
|
144
|
+
"description": "Namespace",
|
|
145
|
+
"type": "string"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"name": "--api-addr",
|
|
149
|
+
"description": "API address override",
|
|
150
|
+
"type": "string"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"name": "--as",
|
|
154
|
+
"description": "Impersonate user",
|
|
155
|
+
"type": "string"
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
"examples": [
|
|
159
|
+
"linkerd install | kubectl apply -f -",
|
|
160
|
+
"linkerd check",
|
|
161
|
+
"linkerd inject deployment.yaml | kubectl apply -f -",
|
|
162
|
+
"linkerd stat deploy",
|
|
163
|
+
"linkerd top deploy/my-app",
|
|
164
|
+
"linkerd tap deploy/my-app",
|
|
165
|
+
"linkerd viz dashboard",
|
|
166
|
+
"linkerd version"
|
|
167
|
+
],
|
|
168
|
+
"relatedCommands": [
|
|
169
|
+
"kubectl",
|
|
170
|
+
"istioctl",
|
|
171
|
+
"helm",
|
|
172
|
+
"nginx"
|
|
173
|
+
]
|
|
174
|
+
}
|