@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,177 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bq",
|
|
3
|
+
"description": "BigQuery command-line 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": "query",
|
|
19
|
+
"description": "Execute a SQL query",
|
|
20
|
+
"examples": [
|
|
21
|
+
"bq query 'SELECT * FROM dataset.table LIMIT 10'",
|
|
22
|
+
"bq query --use_legacy_sql=false 'SELECT count(*) FROM `project.dataset.table`'",
|
|
23
|
+
"bq query --format=json 'SELECT * FROM dataset.table'",
|
|
24
|
+
"bq query --destination_table=project:dataset.results 'SELECT * FROM dataset.table'",
|
|
25
|
+
"bq query --dry_run 'SELECT * FROM dataset.table'"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "ls",
|
|
30
|
+
"description": "List datasets or tables",
|
|
31
|
+
"examples": [
|
|
32
|
+
"bq ls",
|
|
33
|
+
"bq ls dataset",
|
|
34
|
+
"bq ls --all dataset",
|
|
35
|
+
"bq ls --format=json"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "show",
|
|
40
|
+
"description": "Show resource details",
|
|
41
|
+
"examples": [
|
|
42
|
+
"bq show dataset",
|
|
43
|
+
"bq show dataset.table",
|
|
44
|
+
"bq show --schema dataset.table",
|
|
45
|
+
"bq show --format=json dataset.table"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "mk",
|
|
50
|
+
"description": "Create resources",
|
|
51
|
+
"examples": [
|
|
52
|
+
"bq mk dataset",
|
|
53
|
+
"bq mk --table dataset.table schema.json",
|
|
54
|
+
"bq mk --view 'SELECT * FROM dataset.source' dataset.my_view",
|
|
55
|
+
"bq mk --external_table_definition=schema@CSV=gs://bucket/file.csv dataset.ext_table"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "rm",
|
|
60
|
+
"description": "Remove resources",
|
|
61
|
+
"examples": [
|
|
62
|
+
"bq rm dataset.table",
|
|
63
|
+
"bq rm -f dataset.table",
|
|
64
|
+
"bq rm -r dataset",
|
|
65
|
+
"bq rm --table dataset.table"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "load",
|
|
70
|
+
"description": "Load data into a table",
|
|
71
|
+
"examples": [
|
|
72
|
+
"bq load dataset.table gs://bucket/data.csv schema.json",
|
|
73
|
+
"bq load --source_format=NEWLINE_DELIMITED_JSON dataset.table gs://bucket/data.jsonl",
|
|
74
|
+
"bq load --autodetect dataset.table gs://bucket/data.csv",
|
|
75
|
+
"bq load --replace dataset.table gs://bucket/data.csv"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "extract",
|
|
80
|
+
"description": "Export table to GCS",
|
|
81
|
+
"examples": [
|
|
82
|
+
"bq extract dataset.table gs://bucket/export.csv",
|
|
83
|
+
"bq extract --destination_format=NEWLINE_DELIMITED_JSON dataset.table gs://bucket/export.jsonl"
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "cp",
|
|
88
|
+
"description": "Copy tables",
|
|
89
|
+
"examples": [
|
|
90
|
+
"bq cp dataset.source dataset.dest",
|
|
91
|
+
"bq cp project1:dataset.table project2:dataset.table"
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "head",
|
|
96
|
+
"description": "Preview table rows",
|
|
97
|
+
"examples": [
|
|
98
|
+
"bq head dataset.table",
|
|
99
|
+
"bq head -n 20 dataset.table"
|
|
100
|
+
]
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "update",
|
|
104
|
+
"description": "Update resource properties",
|
|
105
|
+
"examples": [
|
|
106
|
+
"bq update --description 'My table' dataset.table",
|
|
107
|
+
"bq update --expiration 3600 dataset.table"
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "partition",
|
|
112
|
+
"description": "List partitions",
|
|
113
|
+
"examples": [
|
|
114
|
+
"bq ls --format=json dataset.table$"
|
|
115
|
+
]
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "wait",
|
|
119
|
+
"description": "Wait for a job to complete",
|
|
120
|
+
"examples": [
|
|
121
|
+
"bq wait job_id"
|
|
122
|
+
]
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
"globalOptions": [
|
|
126
|
+
{
|
|
127
|
+
"name": "--project_id",
|
|
128
|
+
"description": "GCP project ID",
|
|
129
|
+
"type": "string"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "--format",
|
|
133
|
+
"description": "Output format (json, csv, prettyjson, sparse)",
|
|
134
|
+
"type": "string"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "--location",
|
|
138
|
+
"description": "Processing location",
|
|
139
|
+
"type": "string"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "--max_rows",
|
|
143
|
+
"description": "Maximum rows to display",
|
|
144
|
+
"type": "number"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "--use_legacy_sql",
|
|
148
|
+
"description": "Use legacy SQL (true/false)",
|
|
149
|
+
"type": "string"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"name": "--nouse_legacy_sql",
|
|
153
|
+
"description": "Use standard SQL"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"name": "--api",
|
|
157
|
+
"description": "API endpoint URL",
|
|
158
|
+
"type": "string"
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
"examples": [
|
|
162
|
+
"bq query 'SELECT * FROM dataset.table LIMIT 10'",
|
|
163
|
+
"bq ls",
|
|
164
|
+
"bq show dataset.table",
|
|
165
|
+
"bq load --autodetect dataset.table gs://bucket/data.csv",
|
|
166
|
+
"bq extract dataset.table gs://bucket/export.csv",
|
|
167
|
+
"bq mk dataset",
|
|
168
|
+
"bq rm -f dataset.table",
|
|
169
|
+
"bq head -n 5 dataset.table"
|
|
170
|
+
],
|
|
171
|
+
"relatedCommands": [
|
|
172
|
+
"gcloud",
|
|
173
|
+
"gsutil",
|
|
174
|
+
"psql",
|
|
175
|
+
"mysql"
|
|
176
|
+
]
|
|
177
|
+
}
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "calicoctl",
|
|
3
|
+
"description": "Calico CLI — manage Calico network policies and configurations",
|
|
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": "get",
|
|
19
|
+
"description": "Get resources",
|
|
20
|
+
"examples": [
|
|
21
|
+
"calicoctl get nodes",
|
|
22
|
+
"calicoctl get globalnetworkpolicies",
|
|
23
|
+
"calicoctl get networkpolicies -n my-ns",
|
|
24
|
+
"calicoctl get ippool",
|
|
25
|
+
"calicoctl get bgppeer",
|
|
26
|
+
"calicoctl get hostendpoint",
|
|
27
|
+
"calicoctl get workloadendpoint",
|
|
28
|
+
"calicoctl get felixconfiguration",
|
|
29
|
+
"calicoctl get -o yaml globalnetworkpolicy my-policy"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "create",
|
|
34
|
+
"description": "Create resources",
|
|
35
|
+
"examples": [
|
|
36
|
+
"calicoctl create -f policy.yaml"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "apply",
|
|
41
|
+
"description": "Apply resources",
|
|
42
|
+
"examples": [
|
|
43
|
+
"calicoctl apply -f policy.yaml"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "replace",
|
|
48
|
+
"description": "Replace resources",
|
|
49
|
+
"examples": [
|
|
50
|
+
"calicoctl replace -f policy.yaml"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "delete",
|
|
55
|
+
"description": "Delete resources",
|
|
56
|
+
"examples": [
|
|
57
|
+
"calicoctl delete globalnetworkpolicy my-policy",
|
|
58
|
+
"calicoctl delete -f policy.yaml"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "patch",
|
|
63
|
+
"description": "Patch resources",
|
|
64
|
+
"examples": [
|
|
65
|
+
"calicoctl patch felixconfiguration default --patch '{\"spec\":{\"flowLogsFlushInterval\":\"10s\"}}'"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "label",
|
|
70
|
+
"description": "Label resources",
|
|
71
|
+
"examples": [
|
|
72
|
+
"calicoctl label nodes my-node env=production"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "node",
|
|
77
|
+
"description": "Node operations",
|
|
78
|
+
"examples": [
|
|
79
|
+
"calicoctl node status",
|
|
80
|
+
"calicoctl node diags",
|
|
81
|
+
"calicoctl node checksystem"
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "ipam",
|
|
86
|
+
"description": "IP address management",
|
|
87
|
+
"examples": [
|
|
88
|
+
"calicoctl ipam show",
|
|
89
|
+
"calicoctl ipam show --show-blocks",
|
|
90
|
+
"calicoctl ipam release --ip=10.0.0.1",
|
|
91
|
+
"calicoctl ipam check"
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "datastore",
|
|
96
|
+
"description": "Datastore operations",
|
|
97
|
+
"examples": [
|
|
98
|
+
"calicoctl datastore migrate lock",
|
|
99
|
+
"calicoctl datastore migrate unlock"
|
|
100
|
+
]
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "version",
|
|
104
|
+
"description": "Show version",
|
|
105
|
+
"examples": [
|
|
106
|
+
"calicoctl version"
|
|
107
|
+
]
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"globalOptions": [
|
|
111
|
+
{
|
|
112
|
+
"name": "--config",
|
|
113
|
+
"short": "-c",
|
|
114
|
+
"description": "Config file path",
|
|
115
|
+
"type": "string"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "--output",
|
|
119
|
+
"short": "-o",
|
|
120
|
+
"description": "Output format (yaml, json, ps, wide)",
|
|
121
|
+
"type": "string"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "--namespace",
|
|
125
|
+
"short": "-n",
|
|
126
|
+
"description": "Namespace",
|
|
127
|
+
"type": "string"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "--all-namespaces",
|
|
131
|
+
"short": "-A",
|
|
132
|
+
"description": "All namespaces"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"name": "--allow-version-mismatch",
|
|
136
|
+
"description": "Allow client/cluster version mismatch"
|
|
137
|
+
}
|
|
138
|
+
],
|
|
139
|
+
"examples": [
|
|
140
|
+
"calicoctl get nodes",
|
|
141
|
+
"calicoctl get globalnetworkpolicies",
|
|
142
|
+
"calicoctl apply -f policy.yaml",
|
|
143
|
+
"calicoctl node status",
|
|
144
|
+
"calicoctl ipam show",
|
|
145
|
+
"calicoctl get ippool -o yaml",
|
|
146
|
+
"calicoctl version"
|
|
147
|
+
],
|
|
148
|
+
"relatedCommands": [
|
|
149
|
+
"kubectl",
|
|
150
|
+
"cilium",
|
|
151
|
+
"networkpolicy",
|
|
152
|
+
"helm"
|
|
153
|
+
]
|
|
154
|
+
}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "chamber",
|
|
3
|
+
"description": "CLI for managing secrets via AWS SSM Parameter Store",
|
|
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": "write",
|
|
19
|
+
"description": "Write a secret",
|
|
20
|
+
"examples": [
|
|
21
|
+
"chamber write my-service db-password supersecret",
|
|
22
|
+
"chamber write production/api SECRET_KEY abc123"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "read",
|
|
27
|
+
"description": "Read a single secret",
|
|
28
|
+
"examples": [
|
|
29
|
+
"chamber read my-service db-password"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "list",
|
|
34
|
+
"description": "List secrets for a service",
|
|
35
|
+
"examples": [
|
|
36
|
+
"chamber list my-service",
|
|
37
|
+
"chamber list my-service -e"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "exec",
|
|
42
|
+
"description": "Execute command with secrets as env vars",
|
|
43
|
+
"examples": [
|
|
44
|
+
"chamber exec my-service -- node server.js",
|
|
45
|
+
"chamber exec production/api -- ./start.sh",
|
|
46
|
+
"chamber exec my-service another-service -- env"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "env",
|
|
51
|
+
"description": "Print secrets as env vars",
|
|
52
|
+
"examples": [
|
|
53
|
+
"chamber env my-service",
|
|
54
|
+
"chamber env my-service --backend ssm"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "delete",
|
|
59
|
+
"description": "Delete a secret",
|
|
60
|
+
"examples": [
|
|
61
|
+
"chamber delete my-service db-password"
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "history",
|
|
66
|
+
"description": "View secret version history",
|
|
67
|
+
"examples": [
|
|
68
|
+
"chamber history my-service db-password"
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "export",
|
|
73
|
+
"description": "Export secrets in various formats",
|
|
74
|
+
"examples": [
|
|
75
|
+
"chamber export my-service",
|
|
76
|
+
"chamber export my-service --format json",
|
|
77
|
+
"chamber export my-service --format dotenv",
|
|
78
|
+
"chamber export my-service --format csv"
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "import",
|
|
83
|
+
"description": "Import secrets from JSON",
|
|
84
|
+
"examples": [
|
|
85
|
+
"chamber import my-service secrets.json"
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "find",
|
|
90
|
+
"description": "Find services matching pattern",
|
|
91
|
+
"examples": [
|
|
92
|
+
"chamber find db"
|
|
93
|
+
]
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"globalOptions": [
|
|
97
|
+
{
|
|
98
|
+
"name": "--backend",
|
|
99
|
+
"short": "-b",
|
|
100
|
+
"description": "Backend (ssm, s3, null)",
|
|
101
|
+
"type": "string"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "--kms-key-alias",
|
|
105
|
+
"description": "KMS key alias",
|
|
106
|
+
"type": "string"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "--region",
|
|
110
|
+
"description": "AWS region",
|
|
111
|
+
"type": "string"
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"examples": [
|
|
115
|
+
"chamber write my-service db-password secret123",
|
|
116
|
+
"chamber list my-service",
|
|
117
|
+
"chamber exec my-service -- node server.js",
|
|
118
|
+
"chamber export my-service --format json",
|
|
119
|
+
"chamber read my-service db-password",
|
|
120
|
+
"chamber env my-service"
|
|
121
|
+
],
|
|
122
|
+
"relatedCommands": [
|
|
123
|
+
"aws",
|
|
124
|
+
"vault",
|
|
125
|
+
"sops",
|
|
126
|
+
"doppler"
|
|
127
|
+
]
|
|
128
|
+
}
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cilium",
|
|
3
|
+
"description": "Cilium CLI — eBPF-based networking, security, and observability for 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": "install",
|
|
19
|
+
"description": "Install Cilium",
|
|
20
|
+
"examples": [
|
|
21
|
+
"cilium install",
|
|
22
|
+
"cilium install --version 1.14.0",
|
|
23
|
+
"cilium install --helm-set ipam.mode=kubernetes"
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "upgrade",
|
|
28
|
+
"description": "Upgrade Cilium",
|
|
29
|
+
"examples": [
|
|
30
|
+
"cilium upgrade",
|
|
31
|
+
"cilium upgrade --version 1.14.1"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "uninstall",
|
|
36
|
+
"description": "Uninstall Cilium",
|
|
37
|
+
"examples": [
|
|
38
|
+
"cilium uninstall"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "status",
|
|
43
|
+
"description": "Show Cilium status",
|
|
44
|
+
"examples": [
|
|
45
|
+
"cilium status",
|
|
46
|
+
"cilium status --wait"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "connectivity test",
|
|
51
|
+
"description": "Run connectivity tests",
|
|
52
|
+
"examples": [
|
|
53
|
+
"cilium connectivity test",
|
|
54
|
+
"cilium connectivity test --single-node"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "hubble",
|
|
59
|
+
"description": "Hubble observability",
|
|
60
|
+
"examples": [
|
|
61
|
+
"cilium hubble enable",
|
|
62
|
+
"cilium hubble port-forward",
|
|
63
|
+
"cilium hubble ui"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "clustermesh",
|
|
68
|
+
"description": "Multi-cluster mesh",
|
|
69
|
+
"examples": [
|
|
70
|
+
"cilium clustermesh enable",
|
|
71
|
+
"cilium clustermesh connect --destination-context ctx2",
|
|
72
|
+
"cilium clustermesh status",
|
|
73
|
+
"cilium clustermesh disconnect --destination-context ctx2",
|
|
74
|
+
"cilium clustermesh disable"
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "config",
|
|
79
|
+
"description": "Manage Cilium config",
|
|
80
|
+
"examples": [
|
|
81
|
+
"cilium config view",
|
|
82
|
+
"cilium config set enable-hubble true"
|
|
83
|
+
]
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "encrypt",
|
|
87
|
+
"description": "Manage encryption",
|
|
88
|
+
"examples": [
|
|
89
|
+
"cilium encrypt status"
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "bgp",
|
|
94
|
+
"description": "BGP control plane",
|
|
95
|
+
"examples": [
|
|
96
|
+
"cilium bgp peers"
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "sysdump",
|
|
101
|
+
"description": "Collect debug info",
|
|
102
|
+
"examples": [
|
|
103
|
+
"cilium sysdump",
|
|
104
|
+
"cilium sysdump --output-filename debug-dump"
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "version",
|
|
109
|
+
"description": "Show version",
|
|
110
|
+
"examples": [
|
|
111
|
+
"cilium version"
|
|
112
|
+
]
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
"globalOptions": [
|
|
116
|
+
{
|
|
117
|
+
"name": "--context",
|
|
118
|
+
"description": "Kubernetes context",
|
|
119
|
+
"type": "string"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "--namespace",
|
|
123
|
+
"short": "-n",
|
|
124
|
+
"description": "Cilium namespace",
|
|
125
|
+
"type": "string"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "--kubeconfig",
|
|
129
|
+
"description": "Kubeconfig path",
|
|
130
|
+
"type": "string"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "--helm-set",
|
|
134
|
+
"description": "Set Helm values",
|
|
135
|
+
"type": "string"
|
|
136
|
+
}
|
|
137
|
+
],
|
|
138
|
+
"examples": [
|
|
139
|
+
"cilium install",
|
|
140
|
+
"cilium status",
|
|
141
|
+
"cilium connectivity test",
|
|
142
|
+
"cilium hubble enable",
|
|
143
|
+
"cilium hubble ui",
|
|
144
|
+
"cilium clustermesh enable",
|
|
145
|
+
"cilium sysdump",
|
|
146
|
+
"cilium version"
|
|
147
|
+
],
|
|
148
|
+
"relatedCommands": [
|
|
149
|
+
"kubectl",
|
|
150
|
+
"helm",
|
|
151
|
+
"calico",
|
|
152
|
+
"linkerd"
|
|
153
|
+
]
|
|
154
|
+
}
|