Skip to content

Commit a777064

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

File tree

1 file changed

+56
-0
lines changed
  • content/en/docs/score implementation/score-compose

1 file changed

+56
-0
lines changed

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

+56
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,62 @@ Displays help output for the `run` command.
230230
score-compose run -h
231231
```
232232

233+
## `resources`
234+
235+
The `resources` command provides subcommands related to provisioned resources in `score-compose`.
236+
237+
```bash
238+
score-compose resources [command]
239+
```
240+
241+
### Subcommands
242+
243+
#### `get-outputs`
244+
245+
Returns the outputs of provisioned resources. This command retrieves values that can be used by workloads or other processes.
246+
247+
```bash
248+
score-compose resources get-outputs
249+
```
250+
251+
#### `list`
252+
253+
Lists the unique identifiers (UIDs) of all provisioned resources.
254+
255+
```bash
256+
score-compose resources list
257+
```
258+
259+
### Flags
260+
261+
#### `--help` | `-h`
262+
263+
Displays help information for the `resources` command, including its available subcommands.
264+
265+
```bash
266+
score-compose resources --help
267+
```
268+
269+
### Global Flags
270+
271+
These flags apply to all `score-compose resources` commands:
272+
273+
#### `--quiet`
274+
275+
Mutes any logging output.
276+
277+
```bash
278+
score-compose resources --quiet
279+
```
280+
281+
#### `--verbose count` | `-v`
282+
283+
Increases log verbosity and detail by specifying this flag one or more times.
284+
285+
```bash
286+
score-compose resources --verbose
287+
```
288+
233289
## `help`
234290

235291
The help command provides information on all commands.

0 commit comments

Comments
 (0)