@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,161 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "doppler",
|
|
3
|
+
"description": "Doppler CLI — centralized secrets 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 Doppler",
|
|
20
|
+
"examples": [
|
|
21
|
+
"doppler login"
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "setup",
|
|
26
|
+
"description": "Setup project config",
|
|
27
|
+
"examples": [
|
|
28
|
+
"doppler setup",
|
|
29
|
+
"doppler setup --project my-project --config dev"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "secrets",
|
|
34
|
+
"description": "Manage secrets",
|
|
35
|
+
"examples": [
|
|
36
|
+
"doppler secrets",
|
|
37
|
+
"doppler secrets get MY_SECRET",
|
|
38
|
+
"doppler secrets set MY_SECRET=value",
|
|
39
|
+
"doppler secrets set MY_SECRET=value MY_OTHER=val2",
|
|
40
|
+
"doppler secrets delete MY_SECRET",
|
|
41
|
+
"doppler secrets download --format json --no-file"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "run",
|
|
46
|
+
"description": "Run command with injected secrets",
|
|
47
|
+
"examples": [
|
|
48
|
+
"doppler run -- node server.js",
|
|
49
|
+
"doppler run --command 'echo $MY_SECRET'",
|
|
50
|
+
"doppler run -p my-project -c production -- ./start.sh"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "projects",
|
|
55
|
+
"description": "Manage projects",
|
|
56
|
+
"examples": [
|
|
57
|
+
"doppler projects",
|
|
58
|
+
"doppler projects create my-project",
|
|
59
|
+
"doppler projects delete my-project"
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "configs",
|
|
64
|
+
"description": "Manage configs",
|
|
65
|
+
"examples": [
|
|
66
|
+
"doppler configs",
|
|
67
|
+
"doppler configs create -p my-project -e dev staging",
|
|
68
|
+
"doppler configs delete -p my-project -c staging"
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "environments",
|
|
73
|
+
"description": "Manage environments",
|
|
74
|
+
"examples": [
|
|
75
|
+
"doppler environments",
|
|
76
|
+
"doppler environments create -p my-project staging"
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "import",
|
|
81
|
+
"description": "Import secrets",
|
|
82
|
+
"examples": [
|
|
83
|
+
"doppler secrets upload secrets.env",
|
|
84
|
+
"doppler secrets upload secrets.json"
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "changelog",
|
|
89
|
+
"description": "View secret change history",
|
|
90
|
+
"examples": [
|
|
91
|
+
"doppler changelog"
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "activity",
|
|
96
|
+
"description": "View activity logs",
|
|
97
|
+
"examples": [
|
|
98
|
+
"doppler activity"
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "update",
|
|
103
|
+
"description": "Update CLI",
|
|
104
|
+
"examples": [
|
|
105
|
+
"doppler update"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "configure",
|
|
110
|
+
"description": "View/set CLI config",
|
|
111
|
+
"examples": [
|
|
112
|
+
"doppler configure",
|
|
113
|
+
"doppler configure flags --enable-dns-resolver"
|
|
114
|
+
]
|
|
115
|
+
}
|
|
116
|
+
],
|
|
117
|
+
"globalOptions": [
|
|
118
|
+
{
|
|
119
|
+
"name": "--project",
|
|
120
|
+
"short": "-p",
|
|
121
|
+
"description": "Project",
|
|
122
|
+
"type": "string"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "--config",
|
|
126
|
+
"short": "-c",
|
|
127
|
+
"description": "Config",
|
|
128
|
+
"type": "string"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"name": "--token",
|
|
132
|
+
"short": "-t",
|
|
133
|
+
"description": "Service token",
|
|
134
|
+
"type": "string"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "--json",
|
|
138
|
+
"description": "Output as JSON"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "--no-file",
|
|
142
|
+
"description": "Print to stdout"
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
"examples": [
|
|
146
|
+
"doppler login",
|
|
147
|
+
"doppler setup",
|
|
148
|
+
"doppler secrets",
|
|
149
|
+
"doppler run -- node server.js",
|
|
150
|
+
"doppler secrets set DB_URL=postgres://...",
|
|
151
|
+
"doppler secrets download --format json --no-file",
|
|
152
|
+
"doppler projects",
|
|
153
|
+
"doppler run -p api -c production -- ./start.sh"
|
|
154
|
+
],
|
|
155
|
+
"relatedCommands": [
|
|
156
|
+
"vault",
|
|
157
|
+
"chamber",
|
|
158
|
+
"sops",
|
|
159
|
+
"infisical"
|
|
160
|
+
]
|
|
161
|
+
}
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "eb",
|
|
3
|
+
"description": "AWS Elastic Beanstalk CLI",
|
|
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": "init",
|
|
19
|
+
"description": "Initialize EB app",
|
|
20
|
+
"examples": [
|
|
21
|
+
"eb init",
|
|
22
|
+
"eb init my-app --platform node.js-18 --region us-west-2"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "create",
|
|
27
|
+
"description": "Create an environment",
|
|
28
|
+
"examples": [
|
|
29
|
+
"eb create my-env",
|
|
30
|
+
"eb create my-env --instance-type t3.small",
|
|
31
|
+
"eb create my-env --single --instance-type t3.micro",
|
|
32
|
+
"eb create --envvars KEY1=val1,KEY2=val2"
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "deploy",
|
|
37
|
+
"description": "Deploy application",
|
|
38
|
+
"examples": [
|
|
39
|
+
"eb deploy",
|
|
40
|
+
"eb deploy my-env",
|
|
41
|
+
"eb deploy --staged"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "status",
|
|
46
|
+
"description": "Show environment status",
|
|
47
|
+
"examples": [
|
|
48
|
+
"eb status",
|
|
49
|
+
"eb status my-env"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "health",
|
|
54
|
+
"description": "Show detailed health info",
|
|
55
|
+
"examples": [
|
|
56
|
+
"eb health",
|
|
57
|
+
"eb health --refresh"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "logs",
|
|
62
|
+
"description": "View logs",
|
|
63
|
+
"examples": [
|
|
64
|
+
"eb logs",
|
|
65
|
+
"eb logs --all",
|
|
66
|
+
"eb logs -cw enable"
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "open",
|
|
71
|
+
"description": "Open app in browser",
|
|
72
|
+
"examples": [
|
|
73
|
+
"eb open"
|
|
74
|
+
]
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "ssh",
|
|
78
|
+
"description": "SSH into instance",
|
|
79
|
+
"examples": [
|
|
80
|
+
"eb ssh",
|
|
81
|
+
"eb ssh my-env"
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "config",
|
|
86
|
+
"description": "Modify configuration",
|
|
87
|
+
"examples": [
|
|
88
|
+
"eb config",
|
|
89
|
+
"eb config save",
|
|
90
|
+
"eb config put my-config"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "scale",
|
|
95
|
+
"description": "Scale environment",
|
|
96
|
+
"examples": [
|
|
97
|
+
"eb scale 3",
|
|
98
|
+
"eb scale 3 my-env"
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "setenv",
|
|
103
|
+
"description": "Set environment variables",
|
|
104
|
+
"examples": [
|
|
105
|
+
"eb setenv KEY=value",
|
|
106
|
+
"eb setenv DB_HOST=mydb.rds.amazonaws.com DB_PORT=5432"
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "printenv",
|
|
111
|
+
"description": "Print environment variables",
|
|
112
|
+
"examples": [
|
|
113
|
+
"eb printenv"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "terminate",
|
|
118
|
+
"description": "Terminate environment",
|
|
119
|
+
"examples": [
|
|
120
|
+
"eb terminate",
|
|
121
|
+
"eb terminate my-env --force"
|
|
122
|
+
]
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "list",
|
|
126
|
+
"description": "List environments",
|
|
127
|
+
"examples": [
|
|
128
|
+
"eb list"
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "use",
|
|
133
|
+
"description": "Set default environment",
|
|
134
|
+
"examples": [
|
|
135
|
+
"eb use my-env"
|
|
136
|
+
]
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"name": "clone",
|
|
140
|
+
"description": "Clone an environment",
|
|
141
|
+
"examples": [
|
|
142
|
+
"eb clone my-env --clone-name my-env-clone"
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"name": "swap",
|
|
147
|
+
"description": "Swap environment CNAMEs",
|
|
148
|
+
"examples": [
|
|
149
|
+
"eb swap my-env --destination-name my-env-clone"
|
|
150
|
+
]
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"name": "restore",
|
|
154
|
+
"description": "Restore terminated environment",
|
|
155
|
+
"examples": [
|
|
156
|
+
"eb restore env-id"
|
|
157
|
+
]
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "abort",
|
|
161
|
+
"description": "Abort environment update",
|
|
162
|
+
"examples": [
|
|
163
|
+
"eb abort"
|
|
164
|
+
]
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"globalOptions": [
|
|
168
|
+
{
|
|
169
|
+
"name": "--profile",
|
|
170
|
+
"description": "AWS CLI profile",
|
|
171
|
+
"type": "string"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"name": "--region",
|
|
175
|
+
"description": "AWS region",
|
|
176
|
+
"type": "string"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"name": "--verbose",
|
|
180
|
+
"description": "Verbose output"
|
|
181
|
+
}
|
|
182
|
+
],
|
|
183
|
+
"examples": [
|
|
184
|
+
"eb init my-app --platform node.js-18",
|
|
185
|
+
"eb create my-env",
|
|
186
|
+
"eb deploy",
|
|
187
|
+
"eb status",
|
|
188
|
+
"eb logs --all",
|
|
189
|
+
"eb ssh",
|
|
190
|
+
"eb open",
|
|
191
|
+
"eb setenv NODE_ENV=production",
|
|
192
|
+
"eb scale 3",
|
|
193
|
+
"eb health --refresh"
|
|
194
|
+
],
|
|
195
|
+
"relatedCommands": [
|
|
196
|
+
"aws",
|
|
197
|
+
"copilot",
|
|
198
|
+
"docker",
|
|
199
|
+
"heroku"
|
|
200
|
+
]
|
|
201
|
+
}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ecs-cli",
|
|
3
|
+
"description": "Amazon ECS CLI for cluster and task management",
|
|
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": "configure",
|
|
19
|
+
"description": "Configure CLI",
|
|
20
|
+
"examples": [
|
|
21
|
+
"ecs-cli configure --cluster my-cluster --region us-east-1 --default-launch-type FARGATE",
|
|
22
|
+
"ecs-cli configure profile --profile-name default --access-key xxx --secret-key xxx"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "up",
|
|
27
|
+
"description": "Create ECS cluster resources",
|
|
28
|
+
"examples": [
|
|
29
|
+
"ecs-cli up --cluster-config my-cluster --ecs-profile default",
|
|
30
|
+
"ecs-cli up --capability-iam --size 3 --instance-type t3.medium"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "down",
|
|
35
|
+
"description": "Delete ECS cluster resources",
|
|
36
|
+
"examples": [
|
|
37
|
+
"ecs-cli down --force --cluster-config my-cluster"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "compose",
|
|
42
|
+
"description": "Run docker-compose on ECS",
|
|
43
|
+
"examples": [
|
|
44
|
+
"ecs-cli compose up",
|
|
45
|
+
"ecs-cli compose service up",
|
|
46
|
+
"ecs-cli compose service ps",
|
|
47
|
+
"ecs-cli compose service scale 3",
|
|
48
|
+
"ecs-cli compose service down"
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "ps",
|
|
53
|
+
"description": "List running tasks/containers",
|
|
54
|
+
"examples": [
|
|
55
|
+
"ecs-cli ps",
|
|
56
|
+
"ecs-cli ps --cluster my-cluster"
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "logs",
|
|
61
|
+
"description": "View task logs",
|
|
62
|
+
"examples": [
|
|
63
|
+
"ecs-cli logs --task-id task-id --follow"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "push",
|
|
68
|
+
"description": "Push image to ECR",
|
|
69
|
+
"examples": [
|
|
70
|
+
"ecs-cli push my-image:latest"
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "pull",
|
|
75
|
+
"description": "Pull image from ECR",
|
|
76
|
+
"examples": [
|
|
77
|
+
"ecs-cli pull my-image:latest"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "scale",
|
|
82
|
+
"description": "Scale cluster instances",
|
|
83
|
+
"examples": [
|
|
84
|
+
"ecs-cli scale --capability-iam --size 5"
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "check-attributes",
|
|
89
|
+
"description": "Check task placement",
|
|
90
|
+
"examples": [
|
|
91
|
+
"ecs-cli check-attributes --task-def my-task"
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
"globalOptions": [
|
|
96
|
+
{
|
|
97
|
+
"name": "--cluster-config",
|
|
98
|
+
"description": "Cluster configuration name",
|
|
99
|
+
"type": "string"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "--ecs-profile",
|
|
103
|
+
"description": "ECS profile name",
|
|
104
|
+
"type": "string"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "--region",
|
|
108
|
+
"description": "AWS region",
|
|
109
|
+
"type": "string"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "--aws-profile",
|
|
113
|
+
"description": "AWS CLI profile",
|
|
114
|
+
"type": "string"
|
|
115
|
+
}
|
|
116
|
+
],
|
|
117
|
+
"examples": [
|
|
118
|
+
"ecs-cli configure --cluster my-cluster --region us-east-1 --default-launch-type FARGATE",
|
|
119
|
+
"ecs-cli up",
|
|
120
|
+
"ecs-cli compose service up",
|
|
121
|
+
"ecs-cli ps",
|
|
122
|
+
"ecs-cli logs --task-id xxx --follow",
|
|
123
|
+
"ecs-cli compose service scale 3",
|
|
124
|
+
"ecs-cli down --force"
|
|
125
|
+
],
|
|
126
|
+
"relatedCommands": [
|
|
127
|
+
"aws",
|
|
128
|
+
"copilot",
|
|
129
|
+
"docker",
|
|
130
|
+
"docker-compose"
|
|
131
|
+
]
|
|
132
|
+
}
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "flux",
|
|
3
|
+
"description": "Flux CD — GitOps toolkit 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": "bootstrap",
|
|
19
|
+
"description": "Bootstrap Flux on cluster",
|
|
20
|
+
"examples": [
|
|
21
|
+
"flux bootstrap github --owner=myorg --repository=fleet-infra --branch=main --path=clusters/my-cluster --personal",
|
|
22
|
+
"flux bootstrap gitlab --owner=myorg --repository=fleet-infra --branch=main --path=clusters/my-cluster"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "install",
|
|
27
|
+
"description": "Install Flux components",
|
|
28
|
+
"examples": [
|
|
29
|
+
"flux install"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "uninstall",
|
|
34
|
+
"description": "Uninstall Flux",
|
|
35
|
+
"examples": [
|
|
36
|
+
"flux uninstall"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "check",
|
|
41
|
+
"description": "Check prerequisites",
|
|
42
|
+
"examples": [
|
|
43
|
+
"flux check",
|
|
44
|
+
"flux check --pre"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "create source git",
|
|
49
|
+
"description": "Create a Git source",
|
|
50
|
+
"examples": [
|
|
51
|
+
"flux create source git my-repo --url=https://github.com/org/repo --branch=main --interval=1m"
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "create source helm",
|
|
56
|
+
"description": "Create a Helm source",
|
|
57
|
+
"examples": [
|
|
58
|
+
"flux create source helm bitnami --url=https://charts.bitnami.com/bitnami --interval=1h"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "create kustomization",
|
|
63
|
+
"description": "Create a Kustomization",
|
|
64
|
+
"examples": [
|
|
65
|
+
"flux create kustomization my-app --source=my-repo --path=./deploy --prune=true --interval=5m"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "create helmrelease",
|
|
70
|
+
"description": "Create a HelmRelease",
|
|
71
|
+
"examples": [
|
|
72
|
+
"flux create hr my-app --source=HelmRepository/bitnami --chart=nginx --interval=1h"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "get",
|
|
77
|
+
"description": "Get Flux resources",
|
|
78
|
+
"examples": [
|
|
79
|
+
"flux get all",
|
|
80
|
+
"flux get sources git",
|
|
81
|
+
"flux get kustomizations",
|
|
82
|
+
"flux get helmreleases",
|
|
83
|
+
"flux get sources helm"
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "reconcile",
|
|
88
|
+
"description": "Trigger reconciliation",
|
|
89
|
+
"examples": [
|
|
90
|
+
"flux reconcile source git my-repo",
|
|
91
|
+
"flux reconcile kustomization my-app",
|
|
92
|
+
"flux reconcile hr my-app"
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "suspend",
|
|
97
|
+
"description": "Suspend reconciliation",
|
|
98
|
+
"examples": [
|
|
99
|
+
"flux suspend kustomization my-app",
|
|
100
|
+
"flux suspend hr my-app"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "resume",
|
|
105
|
+
"description": "Resume reconciliation",
|
|
106
|
+
"examples": [
|
|
107
|
+
"flux resume kustomization my-app",
|
|
108
|
+
"flux resume hr my-app"
|
|
109
|
+
]
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "delete",
|
|
113
|
+
"description": "Delete Flux resources",
|
|
114
|
+
"examples": [
|
|
115
|
+
"flux delete source git my-repo",
|
|
116
|
+
"flux delete kustomization my-app"
|
|
117
|
+
]
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "logs",
|
|
121
|
+
"description": "View Flux controller logs",
|
|
122
|
+
"examples": [
|
|
123
|
+
"flux logs",
|
|
124
|
+
"flux logs --follow",
|
|
125
|
+
"flux logs --kind=Kustomization --name=my-app"
|
|
126
|
+
]
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "tree",
|
|
130
|
+
"description": "Show resource tree",
|
|
131
|
+
"examples": [
|
|
132
|
+
"flux tree kustomization my-app"
|
|
133
|
+
]
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "export",
|
|
137
|
+
"description": "Export resources as YAML",
|
|
138
|
+
"examples": [
|
|
139
|
+
"flux export source git my-repo",
|
|
140
|
+
"flux export kustomization my-app > my-app.yaml"
|
|
141
|
+
]
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "diff",
|
|
145
|
+
"description": "Diff local vs cluster",
|
|
146
|
+
"examples": [
|
|
147
|
+
"flux diff kustomization my-app --path=./deploy"
|
|
148
|
+
]
|
|
149
|
+
}
|
|
150
|
+
],
|
|
151
|
+
"globalOptions": [
|
|
152
|
+
{
|
|
153
|
+
"name": "--context",
|
|
154
|
+
"description": "Kubernetes context",
|
|
155
|
+
"type": "string"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"name": "--namespace",
|
|
159
|
+
"short": "-n",
|
|
160
|
+
"description": "Namespace (default: flux-system)",
|
|
161
|
+
"type": "string"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"name": "--kubeconfig",
|
|
165
|
+
"description": "Kubeconfig path",
|
|
166
|
+
"type": "string"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "--timeout",
|
|
170
|
+
"description": "Timeout duration",
|
|
171
|
+
"type": "string"
|
|
172
|
+
}
|
|
173
|
+
],
|
|
174
|
+
"examples": [
|
|
175
|
+
"flux bootstrap github --owner=myorg --repository=fleet-infra --branch=main --path=clusters/my-cluster --personal",
|
|
176
|
+
"flux check",
|
|
177
|
+
"flux get all",
|
|
178
|
+
"flux create source git my-repo --url=https://github.com/org/repo --branch=main",
|
|
179
|
+
"flux reconcile kustomization my-app",
|
|
180
|
+
"flux logs --follow",
|
|
181
|
+
"flux tree kustomization my-app"
|
|
182
|
+
],
|
|
183
|
+
"relatedCommands": [
|
|
184
|
+
"kubectl",
|
|
185
|
+
"helm",
|
|
186
|
+
"argocd",
|
|
187
|
+
"kustomize",
|
|
188
|
+
"git"
|
|
189
|
+
]
|
|
190
|
+
}
|