@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.
Files changed (64) hide show
  1. package/README.md +8 -8
  2. package/data/commands/aliyun.json +158 -0
  3. package/data/commands/amplify.json +174 -0
  4. package/data/commands/argo.json +212 -0
  5. package/data/commands/argocd.json +144 -35
  6. package/data/commands/aws-copilot.json +161 -0
  7. package/data/commands/az-devops.json +155 -0
  8. package/data/commands/bq.json +177 -0
  9. package/data/commands/calicoctl.json +154 -0
  10. package/data/commands/chamber.json +128 -0
  11. package/data/commands/cilium.json +154 -0
  12. package/data/commands/civo.json +147 -0
  13. package/data/commands/cloudflared.json +133 -0
  14. package/data/commands/cmctl.json +143 -0
  15. package/data/commands/crossplane.json +119 -0
  16. package/data/commands/devspace.json +198 -0
  17. package/data/commands/doctl.json +510 -156
  18. package/data/commands/doppler.json +161 -0
  19. package/data/commands/eb.json +201 -0
  20. package/data/commands/ecs-cli.json +132 -0
  21. package/data/commands/flux.json +190 -0
  22. package/data/commands/garden.json +180 -0
  23. package/data/commands/gsutil.json +197 -0
  24. package/data/commands/hcloud.json +169 -0
  25. package/data/commands/helmfile.json +178 -0
  26. package/data/commands/heroku.json +239 -0
  27. package/data/commands/ibmcloud.json +184 -0
  28. package/data/commands/infisical.json +127 -0
  29. package/data/commands/istioctl.json +129 -23
  30. package/data/commands/k3d.json +156 -0
  31. package/data/commands/k3s.json +134 -0
  32. package/data/commands/k9s.json +169 -62
  33. package/data/commands/kamel.json +155 -0
  34. package/data/commands/kn.json +160 -0
  35. package/data/commands/kube-score.json +86 -0
  36. package/data/commands/kubeconform.json +98 -0
  37. package/data/commands/kubectx.json +58 -0
  38. package/data/commands/kubens.json +45 -0
  39. package/data/commands/kustomize.json +82 -17
  40. package/data/commands/lightsail.json +168 -0
  41. package/data/commands/linkerd.json +174 -0
  42. package/data/commands/mc.json +236 -0
  43. package/data/commands/minikube.json +264 -60
  44. package/data/commands/oci.json +184 -0
  45. package/data/commands/okteto.json +164 -0
  46. package/data/commands/openstack.json +212 -0
  47. package/data/commands/popeye.json +109 -0
  48. package/data/commands/rancher.json +141 -0
  49. package/data/commands/rclone.json +275 -0
  50. package/data/commands/s3cmd.json +201 -0
  51. package/data/commands/scw.json +169 -0
  52. package/data/commands/skaffold.json +189 -0
  53. package/data/commands/skopeo.json +100 -19
  54. package/data/commands/sops.json +112 -24
  55. package/data/commands/stern.json +124 -0
  56. package/data/commands/telepresence.json +122 -0
  57. package/data/commands/tilt.json +160 -0
  58. package/data/commands/tkn.json +150 -0
  59. package/data/commands/upcloud.json +129 -0
  60. package/data/commands/velero.json +141 -0
  61. package/data/commands/vultr.json +157 -0
  62. package/data/commands/wrangler.json +129 -29
  63. package/data/manifest.json +1 -1
  64. package/package.json +2 -2
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sops",
3
- "description": "Secrets OPerationS — encrypt/decrypt secrets in config files",
3
+ "description": "Mozilla SOPS — encrypt/decrypt secrets in files",
4
4
  "category": "security",
5
5
  "platforms": [
6
6
  "linux",
@@ -13,28 +13,99 @@
13
13
  "fish",
14
14
  "powershell"
15
15
  ],
16
- "subcommands": [],
16
+ "subcommands": [
17
+ {
18
+ "name": "(encrypt)",
19
+ "description": "Encrypt a file",
20
+ "examples": [
21
+ "sops -e secrets.yaml > secrets.enc.yaml",
22
+ "sops --encrypt --in-place secrets.yaml",
23
+ "sops -e --kms 'arn:aws:kms:us-east-1:123:key/abc' secrets.yaml",
24
+ "sops -e --gcp-kms 'projects/my-proj/locations/global/keyRings/kr/cryptoKeys/key' secrets.yaml",
25
+ "sops -e --age 'age1xxx...' secrets.yaml",
26
+ "sops -e --pgp 'FP1,FP2' secrets.yaml"
27
+ ]
28
+ },
29
+ {
30
+ "name": "(decrypt)",
31
+ "description": "Decrypt a file",
32
+ "examples": [
33
+ "sops -d secrets.enc.yaml",
34
+ "sops -d --output secrets.yaml secrets.enc.yaml",
35
+ "sops --decrypt --in-place secrets.enc.yaml",
36
+ "sops -d --extract '[\"key\"]' secrets.enc.yaml"
37
+ ]
38
+ },
39
+ {
40
+ "name": "(edit)",
41
+ "description": "Edit encrypted file",
42
+ "examples": [
43
+ "sops secrets.enc.yaml",
44
+ "EDITOR=vim sops secrets.enc.yaml"
45
+ ]
46
+ },
47
+ {
48
+ "name": "updatekeys",
49
+ "description": "Update encryption keys",
50
+ "examples": [
51
+ "sops updatekeys secrets.enc.yaml"
52
+ ]
53
+ },
54
+ {
55
+ "name": "rotate",
56
+ "description": "Rotate data encryption key",
57
+ "examples": [
58
+ "sops -r secrets.enc.yaml",
59
+ "sops --rotate --in-place secrets.enc.yaml"
60
+ ]
61
+ },
62
+ {
63
+ "name": "groups",
64
+ "description": "Manage key groups",
65
+ "examples": [
66
+ "sops groups add --file secrets.enc.yaml --pgp 'FP'",
67
+ "sops groups delete --file secrets.enc.yaml --shamir-secret-sharing-threshold 2"
68
+ ]
69
+ },
70
+ {
71
+ "name": "publish",
72
+ "description": "Publish encrypted file to a store",
73
+ "examples": [
74
+ "sops publish secrets.enc.yaml"
75
+ ]
76
+ },
77
+ {
78
+ "name": "filestatus",
79
+ "description": "Show file encryption status",
80
+ "examples": [
81
+ "sops filestatus secrets.enc.yaml"
82
+ ]
83
+ }
84
+ ],
17
85
  "globalOptions": [
18
86
  {
19
- "name": "-e",
20
- "description": "Encrypt file"
87
+ "name": "--encrypt",
88
+ "short": "-e",
89
+ "description": "Encrypt mode"
21
90
  },
22
91
  {
23
- "name": "-d",
24
- "description": "Decrypt file"
92
+ "name": "--decrypt",
93
+ "short": "-d",
94
+ "description": "Decrypt mode"
25
95
  },
26
96
  {
27
- "name": "-i",
28
- "description": "In-place edit"
97
+ "name": "--rotate",
98
+ "short": "-r",
99
+ "description": "Rotate data key"
29
100
  },
30
101
  {
31
- "name": "--age",
32
- "description": "Age recipient for encryption",
33
- "type": "string"
102
+ "name": "--in-place",
103
+ "short": "-i",
104
+ "description": "Modify file in-place"
34
105
  },
35
106
  {
36
- "name": "--pgp",
37
- "description": "PGP fingerprint",
107
+ "name": "--output",
108
+ "description": "Output file path",
38
109
  "type": "string"
39
110
  },
40
111
  {
@@ -53,33 +124,50 @@
53
124
  "type": "string"
54
125
  },
55
126
  {
56
- "name": "--encrypted-regex",
57
- "description": "Only encrypt matching keys",
127
+ "name": "--age",
128
+ "description": "age public key(s)",
129
+ "type": "string"
130
+ },
131
+ {
132
+ "name": "--pgp",
133
+ "description": "PGP fingerprint(s)",
58
134
  "type": "string"
59
135
  },
60
136
  {
61
137
  "name": "--input-type",
62
- "description": "Input format (yaml, json, dotenv, binary)",
138
+ "description": "Input type (yaml, json, env, binary)",
63
139
  "type": "string"
64
140
  },
65
141
  {
66
142
  "name": "--output-type",
67
- "description": "Output format",
143
+ "description": "Output type (yaml, json, env, binary)",
144
+ "type": "string"
145
+ },
146
+ {
147
+ "name": "--extract",
148
+ "description": "Extract specific key path",
149
+ "type": "string"
150
+ },
151
+ {
152
+ "name": "--config",
153
+ "description": ".sops.yaml config path",
68
154
  "type": "string"
69
155
  }
70
156
  ],
71
157
  "examples": [
72
- "sops secrets.yaml",
73
- "sops -e secrets.yaml",
158
+ "sops -e secrets.yaml > secrets.enc.yaml",
74
159
  "sops -d secrets.enc.yaml",
75
- "sops -e -i secrets.yaml",
76
- "sops --age age1... secrets.yaml",
77
- "sops -d --output-type json secrets.yaml"
160
+ "sops secrets.enc.yaml",
161
+ "sops -e --age 'age1xxx' secrets.yaml",
162
+ "sops -e --kms 'arn:aws:kms:...' secrets.yaml",
163
+ "sops -d --extract '[\"db\"][\"password\"]' secrets.enc.yaml",
164
+ "sops --rotate --in-place secrets.enc.yaml"
78
165
  ],
79
166
  "relatedCommands": [
167
+ "vault",
168
+ "chamber",
80
169
  "age",
81
170
  "gpg",
82
- "vault",
83
- "aws-kms"
171
+ "sealed-secrets"
84
172
  ]
85
173
  }
@@ -0,0 +1,124 @@
1
+ {
2
+ "name": "stern",
3
+ "description": "Multi pod and container log tailing 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": "(none — use directly)",
19
+ "description": "Tail logs matching a pod query",
20
+ "examples": [
21
+ "stern my-app",
22
+ "stern my-app -n production",
23
+ "stern my-app --since 1h",
24
+ "stern 'web-.*'",
25
+ "stern my-app -c sidecar",
26
+ "stern my-app --exclude 'health'",
27
+ "stern my-app --tail 50",
28
+ "stern . -n my-namespace",
29
+ "stern my-app -o json",
30
+ "stern my-app --template '{{.PodName}} {{.Message}}'"
31
+ ]
32
+ }
33
+ ],
34
+ "globalOptions": [
35
+ {
36
+ "name": "--namespace",
37
+ "short": "-n",
38
+ "description": "Namespace",
39
+ "type": "string"
40
+ },
41
+ {
42
+ "name": "--all-namespaces",
43
+ "short": "-A",
44
+ "description": "All namespaces"
45
+ },
46
+ {
47
+ "name": "--container",
48
+ "short": "-c",
49
+ "description": "Container name filter",
50
+ "type": "string"
51
+ },
52
+ {
53
+ "name": "--since",
54
+ "short": "-s",
55
+ "description": "Duration to start from",
56
+ "type": "string"
57
+ },
58
+ {
59
+ "name": "--tail",
60
+ "description": "Number of initial lines",
61
+ "type": "number"
62
+ },
63
+ {
64
+ "name": "--exclude",
65
+ "short": "-e",
66
+ "description": "Exclude log lines matching regex",
67
+ "type": "string"
68
+ },
69
+ {
70
+ "name": "--include",
71
+ "short": "-i",
72
+ "description": "Include only lines matching regex",
73
+ "type": "string"
74
+ },
75
+ {
76
+ "name": "--output",
77
+ "short": "-o",
78
+ "description": "Output format (default, json, raw)",
79
+ "type": "string"
80
+ },
81
+ {
82
+ "name": "--template",
83
+ "short": "-t",
84
+ "description": "Go template for output",
85
+ "type": "string"
86
+ },
87
+ {
88
+ "name": "--selector",
89
+ "short": "-l",
90
+ "description": "Label selector",
91
+ "type": "string"
92
+ },
93
+ {
94
+ "name": "--timestamps",
95
+ "description": "Show timestamps"
96
+ },
97
+ {
98
+ "name": "--color",
99
+ "description": "Force color (auto, always, never)",
100
+ "type": "string"
101
+ },
102
+ {
103
+ "name": "--context",
104
+ "description": "Kubernetes context name",
105
+ "type": "string"
106
+ }
107
+ ],
108
+ "examples": [
109
+ "stern my-app",
110
+ "stern my-app -n production",
111
+ "stern 'web-.*' --since 1h",
112
+ "stern my-app -c main --tail 100",
113
+ "stern my-app --exclude 'healthcheck'",
114
+ "stern . -A",
115
+ "stern my-app -o json",
116
+ "stern my-app -l app=web"
117
+ ],
118
+ "relatedCommands": [
119
+ "kubectl",
120
+ "k9s",
121
+ "kubetail",
122
+ "lnav"
123
+ ]
124
+ }
@@ -0,0 +1,122 @@
1
+ {
2
+ "name": "telepresence",
3
+ "description": "Telepresence — fast local development against a remote Kubernetes cluster",
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": "connect",
19
+ "description": "Connect to cluster",
20
+ "examples": [
21
+ "telepresence connect",
22
+ "telepresence connect --context my-context",
23
+ "telepresence connect --namespace my-ns"
24
+ ]
25
+ },
26
+ {
27
+ "name": "intercept",
28
+ "description": "Intercept a service",
29
+ "examples": [
30
+ "telepresence intercept my-service --port 8080",
31
+ "telepresence intercept my-service --port 8080:http --env-file my-service.env",
32
+ "telepresence intercept my-service --port 8080 -- npm run dev"
33
+ ]
34
+ },
35
+ {
36
+ "name": "leave",
37
+ "description": "Leave an intercept",
38
+ "examples": [
39
+ "telepresence leave my-service"
40
+ ]
41
+ },
42
+ {
43
+ "name": "list",
44
+ "description": "List intercepts",
45
+ "examples": [
46
+ "telepresence list"
47
+ ]
48
+ },
49
+ {
50
+ "name": "status",
51
+ "description": "Show connection status",
52
+ "examples": [
53
+ "telepresence status"
54
+ ]
55
+ },
56
+ {
57
+ "name": "quit",
58
+ "description": "Disconnect from cluster",
59
+ "examples": [
60
+ "telepresence quit"
61
+ ]
62
+ },
63
+ {
64
+ "name": "helm",
65
+ "description": "Manage traffic-manager",
66
+ "examples": [
67
+ "telepresence helm install",
68
+ "telepresence helm upgrade",
69
+ "telepresence helm uninstall"
70
+ ]
71
+ },
72
+ {
73
+ "name": "gather-logs",
74
+ "description": "Gather debugging logs",
75
+ "examples": [
76
+ "telepresence gather-logs"
77
+ ]
78
+ },
79
+ {
80
+ "name": "version",
81
+ "description": "Show version",
82
+ "examples": [
83
+ "telepresence version"
84
+ ]
85
+ },
86
+ {
87
+ "name": "dashboard",
88
+ "description": "Open Ambassador Cloud dashboard",
89
+ "examples": [
90
+ "telepresence dashboard"
91
+ ]
92
+ }
93
+ ],
94
+ "globalOptions": [
95
+ {
96
+ "name": "--context",
97
+ "description": "Kubernetes context",
98
+ "type": "string"
99
+ },
100
+ {
101
+ "name": "--namespace",
102
+ "short": "-n",
103
+ "description": "Namespace",
104
+ "type": "string"
105
+ }
106
+ ],
107
+ "examples": [
108
+ "telepresence connect",
109
+ "telepresence intercept my-service --port 8080",
110
+ "telepresence intercept my-service --port 8080 -- npm run dev",
111
+ "telepresence list",
112
+ "telepresence status",
113
+ "telepresence leave my-service",
114
+ "telepresence quit"
115
+ ],
116
+ "relatedCommands": [
117
+ "kubectl",
118
+ "skaffold",
119
+ "tilt",
120
+ "devspace"
121
+ ]
122
+ }
@@ -0,0 +1,160 @@
1
+ {
2
+ "name": "tilt",
3
+ "description": "Tilt — smart rebuilds and live updates for Kubernetes dev",
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": "up",
19
+ "description": "Start Tilt with UI",
20
+ "examples": [
21
+ "tilt up",
22
+ "tilt up --stream",
23
+ "tilt up --port 10350",
24
+ "tilt up -- --my-flag"
25
+ ]
26
+ },
27
+ {
28
+ "name": "down",
29
+ "description": "Tear down resources",
30
+ "examples": [
31
+ "tilt down",
32
+ "tilt down --delete-namespaces"
33
+ ]
34
+ },
35
+ {
36
+ "name": "ci",
37
+ "description": "CI mode (run, wait, exit)",
38
+ "examples": [
39
+ "tilt ci",
40
+ "tilt ci --timeout 10m"
41
+ ]
42
+ },
43
+ {
44
+ "name": "demo",
45
+ "description": "Start demo project",
46
+ "examples": [
47
+ "tilt demo"
48
+ ]
49
+ },
50
+ {
51
+ "name": "get",
52
+ "description": "Get resource info",
53
+ "examples": [
54
+ "tilt get uiresources",
55
+ "tilt get cmd"
56
+ ]
57
+ },
58
+ {
59
+ "name": "logs",
60
+ "description": "View resource logs",
61
+ "examples": [
62
+ "tilt logs",
63
+ "tilt logs my-resource"
64
+ ]
65
+ },
66
+ {
67
+ "name": "trigger",
68
+ "description": "Trigger an update",
69
+ "examples": [
70
+ "tilt trigger my-resource"
71
+ ]
72
+ },
73
+ {
74
+ "name": "enable",
75
+ "description": "Enable a resource",
76
+ "examples": [
77
+ "tilt enable my-resource"
78
+ ]
79
+ },
80
+ {
81
+ "name": "disable",
82
+ "description": "Disable a resource",
83
+ "examples": [
84
+ "tilt disable my-resource"
85
+ ]
86
+ },
87
+ {
88
+ "name": "describe",
89
+ "description": "Describe a resource",
90
+ "examples": [
91
+ "tilt describe uiresource/my-resource"
92
+ ]
93
+ },
94
+ {
95
+ "name": "doctor",
96
+ "description": "Diagnose issues",
97
+ "examples": [
98
+ "tilt doctor"
99
+ ]
100
+ },
101
+ {
102
+ "name": "dump",
103
+ "description": "Dump internal state",
104
+ "examples": [
105
+ "tilt dump engine",
106
+ "tilt dump cli"
107
+ ]
108
+ },
109
+ {
110
+ "name": "version",
111
+ "description": "Show version",
112
+ "examples": [
113
+ "tilt version"
114
+ ]
115
+ }
116
+ ],
117
+ "globalOptions": [
118
+ {
119
+ "name": "--context",
120
+ "description": "Kubernetes context",
121
+ "type": "string"
122
+ },
123
+ {
124
+ "name": "--namespace",
125
+ "description": "Default namespace",
126
+ "type": "string"
127
+ },
128
+ {
129
+ "name": "--file",
130
+ "short": "-f",
131
+ "description": "Tiltfile path",
132
+ "type": "string"
133
+ },
134
+ {
135
+ "name": "--port",
136
+ "description": "Web UI port",
137
+ "type": "number"
138
+ },
139
+ {
140
+ "name": "--stream",
141
+ "description": "Stream logs to stdout"
142
+ }
143
+ ],
144
+ "examples": [
145
+ "tilt up",
146
+ "tilt up --stream",
147
+ "tilt down",
148
+ "tilt ci",
149
+ "tilt logs",
150
+ "tilt trigger my-resource",
151
+ "tilt doctor",
152
+ "tilt version"
153
+ ],
154
+ "relatedCommands": [
155
+ "skaffold",
156
+ "kubectl",
157
+ "docker",
158
+ "devspace"
159
+ ]
160
+ }