Skip to content

Commit 72289f3

Browse files
committed
Resources command in score-k8s added
Signed-off-by: Siddhi905 <siddhigupta811@gmail.com>
1 parent f3ebd15 commit 72289f3

File tree

1 file changed

+57
-0
lines changed
  • content/en/docs/score implementation/score-k8s

1 file changed

+57
-0
lines changed

content/en/docs/score implementation/score-k8s/cli.md

+57
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,63 @@ Displays help information for `completion`, providing a short description of the
173173
score-k8s completion --help
174174
```
175175

176+
## `resources`
177+
178+
The `resources` command provides subcommands related to provisioned resources in `score-k8s`.
179+
180+
```bash
181+
score-k8s resources [command]
182+
```
183+
184+
### Subcommands
185+
186+
#### `get-outputs`
187+
188+
Returns the outputs of provisioned resources. This command retrieves values that can be used by workloads or other processes.
189+
190+
```bash
191+
score-k8s resources get-outputs
192+
```
193+
194+
#### `list`
195+
196+
Lists the unique identifiers (UIDs) of all provisioned resources.
197+
198+
```bash
199+
score-k8s resources list
200+
```
201+
202+
### Flags
203+
204+
#### `--help` | `-h`
205+
206+
Displays help information for the `resources` command, including its available subcommands.
207+
208+
```bash
209+
score-k8s resources --help
210+
```
211+
212+
### Global Flags
213+
214+
These flags apply to all `score-k8s resources` commands:
215+
216+
#### `--quiet`
217+
218+
Mutes any logging output.
219+
220+
```bash
221+
score-k8s resources --quiet
222+
```
223+
224+
#### `--verbose count` | `-v`
225+
226+
Increases log verbosity and detail by specifying this flag one or more times.
227+
228+
```bash
229+
score-k8s resources --verbose
230+
```
231+
232+
176233
## `help`
177234

178235
The `help` command provides information on all commands.

0 commit comments

Comments
 (0)