@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,150 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tkn",
|
|
3
|
+
"description": "Tekton CLI for CI/CD pipelines 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": "pipeline",
|
|
19
|
+
"description": "Manage pipelines",
|
|
20
|
+
"examples": [
|
|
21
|
+
"tkn pipeline list",
|
|
22
|
+
"tkn pipeline start my-pipeline",
|
|
23
|
+
"tkn pipeline start my-pipeline -p param1=value1",
|
|
24
|
+
"tkn pipeline describe my-pipeline",
|
|
25
|
+
"tkn pipeline delete my-pipeline",
|
|
26
|
+
"tkn pipeline logs my-pipeline"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "pipelinerun",
|
|
31
|
+
"description": "Manage pipeline runs",
|
|
32
|
+
"examples": [
|
|
33
|
+
"tkn pipelinerun list",
|
|
34
|
+
"tkn pipelinerun describe run-xxxxx",
|
|
35
|
+
"tkn pipelinerun logs run-xxxxx",
|
|
36
|
+
"tkn pipelinerun delete run-xxxxx",
|
|
37
|
+
"tkn pipelinerun cancel run-xxxxx"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "task",
|
|
42
|
+
"description": "Manage tasks",
|
|
43
|
+
"examples": [
|
|
44
|
+
"tkn task list",
|
|
45
|
+
"tkn task start my-task",
|
|
46
|
+
"tkn task describe my-task",
|
|
47
|
+
"tkn task delete my-task",
|
|
48
|
+
"tkn task logs my-task"
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "taskrun",
|
|
53
|
+
"description": "Manage task runs",
|
|
54
|
+
"examples": [
|
|
55
|
+
"tkn taskrun list",
|
|
56
|
+
"tkn taskrun describe run-xxxxx",
|
|
57
|
+
"tkn taskrun logs run-xxxxx",
|
|
58
|
+
"tkn taskrun delete run-xxxxx"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "hub",
|
|
63
|
+
"description": "Tekton Hub operations",
|
|
64
|
+
"examples": [
|
|
65
|
+
"tkn hub search git-clone",
|
|
66
|
+
"tkn hub install task git-clone",
|
|
67
|
+
"tkn hub get task buildah"
|
|
68
|
+
]
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "clustertask",
|
|
72
|
+
"description": "Manage cluster tasks",
|
|
73
|
+
"examples": [
|
|
74
|
+
"tkn clustertask list",
|
|
75
|
+
"tkn clustertask describe my-ct"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "triggertemplate",
|
|
80
|
+
"description": "Manage trigger templates",
|
|
81
|
+
"examples": [
|
|
82
|
+
"tkn triggertemplate list",
|
|
83
|
+
"tkn triggertemplate describe my-tt"
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "triggerbinding",
|
|
88
|
+
"description": "Manage trigger bindings",
|
|
89
|
+
"examples": [
|
|
90
|
+
"tkn triggerbinding list",
|
|
91
|
+
"tkn triggerbinding describe my-tb"
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "eventlistener",
|
|
96
|
+
"description": "Manage event listeners",
|
|
97
|
+
"examples": [
|
|
98
|
+
"tkn eventlistener list",
|
|
99
|
+
"tkn eventlistener describe my-el",
|
|
100
|
+
"tkn eventlistener logs my-el"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "bundle",
|
|
105
|
+
"description": "Manage Tekton bundles",
|
|
106
|
+
"examples": [
|
|
107
|
+
"tkn bundle push my-registry/my-bundle:latest -f task.yaml",
|
|
108
|
+
"tkn bundle list my-registry/my-bundle:latest"
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
],
|
|
112
|
+
"globalOptions": [
|
|
113
|
+
{
|
|
114
|
+
"name": "--context",
|
|
115
|
+
"description": "Kubernetes context",
|
|
116
|
+
"type": "string"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"name": "--namespace",
|
|
120
|
+
"short": "-n",
|
|
121
|
+
"description": "Namespace",
|
|
122
|
+
"type": "string"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "--kubeconfig",
|
|
126
|
+
"short": "-k",
|
|
127
|
+
"description": "Kubeconfig path",
|
|
128
|
+
"type": "string"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"name": "--no-headers",
|
|
132
|
+
"description": "Omit table headers"
|
|
133
|
+
}
|
|
134
|
+
],
|
|
135
|
+
"examples": [
|
|
136
|
+
"tkn pipeline list",
|
|
137
|
+
"tkn pipeline start my-pipeline",
|
|
138
|
+
"tkn pipelinerun logs run-xxxxx",
|
|
139
|
+
"tkn task list",
|
|
140
|
+
"tkn hub search git-clone",
|
|
141
|
+
"tkn hub install task git-clone",
|
|
142
|
+
"tkn eventlistener list"
|
|
143
|
+
],
|
|
144
|
+
"relatedCommands": [
|
|
145
|
+
"kubectl",
|
|
146
|
+
"argocd",
|
|
147
|
+
"flux",
|
|
148
|
+
"jenkins"
|
|
149
|
+
]
|
|
150
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "upcloud",
|
|
3
|
+
"description": "UpCloud CLI — manage UpCloud infrastructure",
|
|
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
|
+
"upctl server list",
|
|
22
|
+
"upctl server create --hostname my-server --zone de-fra1 --plan 1xCPU-1GB --os Ubuntu\\ Server\\ 22.04",
|
|
23
|
+
"upctl server start uuid",
|
|
24
|
+
"upctl server stop uuid",
|
|
25
|
+
"upctl server delete uuid",
|
|
26
|
+
"upctl server restart uuid"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "storage",
|
|
31
|
+
"description": "Manage storage",
|
|
32
|
+
"examples": [
|
|
33
|
+
"upctl storage list",
|
|
34
|
+
"upctl storage create --size 10 --title my-vol --zone de-fra1"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "network",
|
|
39
|
+
"description": "Manage networks",
|
|
40
|
+
"examples": [
|
|
41
|
+
"upctl network list",
|
|
42
|
+
"upctl network create --name my-net --zone de-fra1 --ip-network address=10.0.0.0/24"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "ip-address",
|
|
47
|
+
"description": "Manage IP addresses",
|
|
48
|
+
"examples": [
|
|
49
|
+
"upctl ip-address list",
|
|
50
|
+
"upctl ip-address assign --server uuid"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "firewall",
|
|
55
|
+
"description": "Manage firewall rules",
|
|
56
|
+
"examples": [
|
|
57
|
+
"upctl firewall show uuid",
|
|
58
|
+
"upctl firewall create --server uuid --direction in --action accept --protocol tcp --destination-port-start 22 --destination-port-end 22"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "kubernetes",
|
|
63
|
+
"description": "Manage Kubernetes (UKLOUD)",
|
|
64
|
+
"examples": [
|
|
65
|
+
"upctl kubernetes list",
|
|
66
|
+
"upctl kubernetes create --name mycluster --zone de-fra1 --network uuid --node-group name=workers,count=3,plan=K8S-2xCPU-4GB"
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "database",
|
|
71
|
+
"description": "Managed databases",
|
|
72
|
+
"examples": [
|
|
73
|
+
"upctl database list",
|
|
74
|
+
"upctl database create --title my-db --type pg --plan 1x1xCPU-2GB-25GB --zone de-fra1"
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "loadbalancer",
|
|
79
|
+
"description": "Manage load balancers",
|
|
80
|
+
"examples": [
|
|
81
|
+
"upctl loadbalancer list"
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "zone",
|
|
86
|
+
"description": "List zones",
|
|
87
|
+
"examples": [
|
|
88
|
+
"upctl zone list"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "account",
|
|
93
|
+
"description": "Account info",
|
|
94
|
+
"examples": [
|
|
95
|
+
"upctl account show"
|
|
96
|
+
]
|
|
97
|
+
}
|
|
98
|
+
],
|
|
99
|
+
"globalOptions": [
|
|
100
|
+
{
|
|
101
|
+
"name": "-o",
|
|
102
|
+
"description": "Output format (json, yaml, human)",
|
|
103
|
+
"type": "string"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "--force",
|
|
107
|
+
"description": "Skip confirmation"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "--config",
|
|
111
|
+
"description": "Config file path",
|
|
112
|
+
"type": "file"
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
"examples": [
|
|
116
|
+
"upctl server list",
|
|
117
|
+
"upctl server create --hostname web --zone de-fra1 --plan 1xCPU-1GB",
|
|
118
|
+
"upctl kubernetes list",
|
|
119
|
+
"upctl database list",
|
|
120
|
+
"upctl zone list",
|
|
121
|
+
"upctl account show"
|
|
122
|
+
],
|
|
123
|
+
"relatedCommands": [
|
|
124
|
+
"hcloud",
|
|
125
|
+
"doctl",
|
|
126
|
+
"civo",
|
|
127
|
+
"terraform"
|
|
128
|
+
]
|
|
129
|
+
}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "velero",
|
|
3
|
+
"description": "Velero — backup and restore Kubernetes resources and persistent volumes",
|
|
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 Velero server",
|
|
20
|
+
"examples": [
|
|
21
|
+
"velero install --provider aws --bucket my-bucket --secret-file ./credentials --backup-location-config region=us-east-1",
|
|
22
|
+
"velero install --provider gcp --bucket my-bucket --secret-file ./credentials"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "backup",
|
|
27
|
+
"description": "Manage backups",
|
|
28
|
+
"examples": [
|
|
29
|
+
"velero backup create my-backup",
|
|
30
|
+
"velero backup create my-backup --include-namespaces ns1,ns2",
|
|
31
|
+
"velero backup create my-backup --exclude-resources configmaps",
|
|
32
|
+
"velero backup create my-backup --ttl 720h",
|
|
33
|
+
"velero backup get",
|
|
34
|
+
"velero backup describe my-backup",
|
|
35
|
+
"velero backup logs my-backup",
|
|
36
|
+
"velero backup delete my-backup"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "restore",
|
|
41
|
+
"description": "Manage restores",
|
|
42
|
+
"examples": [
|
|
43
|
+
"velero restore create --from-backup my-backup",
|
|
44
|
+
"velero restore create --from-backup my-backup --include-namespaces ns1",
|
|
45
|
+
"velero restore create --from-backup my-backup --restore-volumes=true",
|
|
46
|
+
"velero restore get",
|
|
47
|
+
"velero restore describe my-restore",
|
|
48
|
+
"velero restore logs my-restore",
|
|
49
|
+
"velero restore delete my-restore"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "schedule",
|
|
54
|
+
"description": "Manage backup schedules",
|
|
55
|
+
"examples": [
|
|
56
|
+
"velero schedule create daily --schedule='0 1 * * *'",
|
|
57
|
+
"velero schedule create daily --schedule='0 1 * * *' --include-namespaces production",
|
|
58
|
+
"velero schedule get",
|
|
59
|
+
"velero schedule describe daily",
|
|
60
|
+
"velero schedule delete daily"
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "backup-location",
|
|
65
|
+
"description": "Manage backup locations",
|
|
66
|
+
"examples": [
|
|
67
|
+
"velero backup-location get",
|
|
68
|
+
"velero backup-location create secondary --provider aws --bucket secondary-bucket --config region=eu-west-1"
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "snapshot-location",
|
|
73
|
+
"description": "Manage volume snapshot locations",
|
|
74
|
+
"examples": [
|
|
75
|
+
"velero snapshot-location get",
|
|
76
|
+
"velero snapshot-location create default --provider aws --config region=us-east-1"
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "plugin",
|
|
81
|
+
"description": "Manage plugins",
|
|
82
|
+
"examples": [
|
|
83
|
+
"velero plugin get",
|
|
84
|
+
"velero plugin add velero/velero-plugin-for-aws:v1.5.0"
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "uninstall",
|
|
89
|
+
"description": "Uninstall Velero",
|
|
90
|
+
"examples": [
|
|
91
|
+
"velero uninstall"
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "version",
|
|
96
|
+
"description": "Show version",
|
|
97
|
+
"examples": [
|
|
98
|
+
"velero version"
|
|
99
|
+
]
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"globalOptions": [
|
|
103
|
+
{
|
|
104
|
+
"name": "--kubeconfig",
|
|
105
|
+
"description": "Kubeconfig path",
|
|
106
|
+
"type": "string"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "--kubecontext",
|
|
110
|
+
"description": "Kubernetes context",
|
|
111
|
+
"type": "string"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "--namespace",
|
|
115
|
+
"short": "-n",
|
|
116
|
+
"description": "Namespace (default: velero)",
|
|
117
|
+
"type": "string"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "--output",
|
|
121
|
+
"short": "-o",
|
|
122
|
+
"description": "Output format (json, table)",
|
|
123
|
+
"type": "string"
|
|
124
|
+
}
|
|
125
|
+
],
|
|
126
|
+
"examples": [
|
|
127
|
+
"velero backup create my-backup",
|
|
128
|
+
"velero backup get",
|
|
129
|
+
"velero restore create --from-backup my-backup",
|
|
130
|
+
"velero schedule create daily --schedule='0 1 * * *'",
|
|
131
|
+
"velero backup logs my-backup",
|
|
132
|
+
"velero backup-location get",
|
|
133
|
+
"velero version"
|
|
134
|
+
],
|
|
135
|
+
"relatedCommands": [
|
|
136
|
+
"kubectl",
|
|
137
|
+
"helm",
|
|
138
|
+
"restic",
|
|
139
|
+
"etcdctl"
|
|
140
|
+
]
|
|
141
|
+
}
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "vultr",
|
|
3
|
+
"description": "Vultr CLI — manage Vultr cloud infrastructure",
|
|
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": "instance",
|
|
19
|
+
"description": "Manage compute instances",
|
|
20
|
+
"examples": [
|
|
21
|
+
"vultr-cli instance list",
|
|
22
|
+
"vultr-cli instance create --region ewr --plan vc2-1c-1gb --os 387",
|
|
23
|
+
"vultr-cli instance delete instance-id",
|
|
24
|
+
"vultr-cli instance restart instance-id",
|
|
25
|
+
"vultr-cli instance start instance-id",
|
|
26
|
+
"vultr-cli instance stop instance-id",
|
|
27
|
+
"vultr-cli instance get instance-id"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "kubernetes",
|
|
32
|
+
"description": "Manage VKE clusters",
|
|
33
|
+
"examples": [
|
|
34
|
+
"vultr-cli kubernetes list",
|
|
35
|
+
"vultr-cli kubernetes create --label my-cluster --region ewr --version v1.28 --node-pools 'quantity:3,plan:vc2-1c-2gb,label:workers'",
|
|
36
|
+
"vultr-cli kubernetes delete-with-resources cluster-id",
|
|
37
|
+
"vultr-cli kubernetes config cluster-id"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "database",
|
|
42
|
+
"description": "Manage managed databases",
|
|
43
|
+
"examples": [
|
|
44
|
+
"vultr-cli database list",
|
|
45
|
+
"vultr-cli database create --database-engine pg --database-engine-version 15 --region ewr --plan vultr-dbaas-hobbyist-cc-1-25-1 --label my-db"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "block-storage",
|
|
50
|
+
"description": "Manage block storage",
|
|
51
|
+
"examples": [
|
|
52
|
+
"vultr-cli block-storage list",
|
|
53
|
+
"vultr-cli block-storage create --region ewr --size 40 --label my-vol"
|
|
54
|
+
]
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"name": "object-storage",
|
|
58
|
+
"description": "Manage object storage",
|
|
59
|
+
"examples": [
|
|
60
|
+
"vultr-cli object-storage list",
|
|
61
|
+
"vultr-cli object-storage create --cluster-id 2 --label my-store"
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "dns",
|
|
66
|
+
"description": "Manage DNS",
|
|
67
|
+
"examples": [
|
|
68
|
+
"vultr-cli dns domain list",
|
|
69
|
+
"vultr-cli dns domain create --domain example.com",
|
|
70
|
+
"vultr-cli dns record list example.com",
|
|
71
|
+
"vultr-cli dns record create --domain example.com --type A --name www --data 1.2.3.4"
|
|
72
|
+
]
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "firewall group",
|
|
76
|
+
"description": "Manage firewall groups",
|
|
77
|
+
"examples": [
|
|
78
|
+
"vultr-cli firewall group list",
|
|
79
|
+
"vultr-cli firewall group create --description my-fw"
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "ssh-key",
|
|
84
|
+
"description": "Manage SSH keys",
|
|
85
|
+
"examples": [
|
|
86
|
+
"vultr-cli ssh-key list",
|
|
87
|
+
"vultr-cli ssh-key create --name mykey --key 'ssh-rsa ...'"
|
|
88
|
+
]
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "snapshot",
|
|
92
|
+
"description": "Manage snapshots",
|
|
93
|
+
"examples": [
|
|
94
|
+
"vultr-cli snapshot list",
|
|
95
|
+
"vultr-cli snapshot create --instance-id xxx --description backup1"
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"name": "load-balancer",
|
|
100
|
+
"description": "Manage load balancers",
|
|
101
|
+
"examples": [
|
|
102
|
+
"vultr-cli load-balancer list",
|
|
103
|
+
"vultr-cli load-balancer create --region ewr --label my-lb"
|
|
104
|
+
]
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "regions",
|
|
108
|
+
"description": "List available regions",
|
|
109
|
+
"examples": [
|
|
110
|
+
"vultr-cli regions list"
|
|
111
|
+
]
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "plans",
|
|
115
|
+
"description": "List available plans",
|
|
116
|
+
"examples": [
|
|
117
|
+
"vultr-cli plans list",
|
|
118
|
+
"vultr-cli plans list --type vc2"
|
|
119
|
+
]
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "os",
|
|
123
|
+
"description": "List available OS images",
|
|
124
|
+
"examples": [
|
|
125
|
+
"vultr-cli os list"
|
|
126
|
+
]
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"globalOptions": [
|
|
130
|
+
{
|
|
131
|
+
"name": "--api-key",
|
|
132
|
+
"description": "API key",
|
|
133
|
+
"type": "string"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "-o",
|
|
137
|
+
"description": "Output format (json)",
|
|
138
|
+
"type": "string"
|
|
139
|
+
}
|
|
140
|
+
],
|
|
141
|
+
"examples": [
|
|
142
|
+
"vultr-cli instance list",
|
|
143
|
+
"vultr-cli instance create --region ewr --plan vc2-1c-1gb --os 387",
|
|
144
|
+
"vultr-cli kubernetes list",
|
|
145
|
+
"vultr-cli database list",
|
|
146
|
+
"vultr-cli dns domain list",
|
|
147
|
+
"vultr-cli regions list",
|
|
148
|
+
"vultr-cli plans list"
|
|
149
|
+
],
|
|
150
|
+
"relatedCommands": [
|
|
151
|
+
"doctl",
|
|
152
|
+
"civo",
|
|
153
|
+
"hcloud",
|
|
154
|
+
"linode-cli",
|
|
155
|
+
"terraform"
|
|
156
|
+
]
|
|
157
|
+
}
|