Skip to content

Commit 824101f

Browse files
author
Replicated Release Pipeline
committed
Update Replicated CLI docs for v0.89.0
1 parent 33dada7 commit 824101f

23 files changed

+208
-2
lines changed

docs/reference/replicated-cli-app-ls.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ either table or JSON format.
1818
replicated app ls [NAME] [flags]
1919
```
2020

21+
### Aliases
22+
23+
```
24+
ls, list
25+
```
26+
2127
### Examples
2228

2329
```

docs/reference/replicated-cli-app-rm.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ Use this command with caution as there is no way to undo this operation.
1515
replicated app rm NAME [flags]
1616
```
1717

18+
### Aliases
19+
20+
```
21+
rm, delete
22+
```
23+
1824
### Examples
1925

2026
```
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# replicated channel demote
2+
3+
Demote a release from a channel
4+
5+
### Synopsis
6+
7+
Demote a channel release from a channel using a channel sequence or release sequence.
8+
9+
```
10+
replicated channel demote CHANNEL_ID_OR_NAME [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
# Demote a release from a channel by channel sequence
17+
replicated channel release demote Beta --channel-sequence 15
18+
19+
# Demote a release from a channel by release sequence
20+
replicated channel release demote Beta --release-sequence 12
21+
```
22+
23+
### Options
24+
25+
```
26+
--channel-sequence int The channel sequence to demote
27+
-h, --help help for demote
28+
--release-sequence int The release sequence to demote
29+
```
30+
31+
### Options inherited from parent commands
32+
33+
```
34+
--app string The app slug or app id to use in all calls
35+
--integration-test string Set to the name of the integration test to run
36+
--log-api-calls string Log the API calls to the specified file
37+
--token string The API token to use to access your app in the Vendor API
38+
```
39+
40+
### SEE ALSO
41+
42+
* [replicated channel](replicated-cli-channel) - List channels
43+
44+
###### Auto generated by spf13/cobra on 22-Jan-2025

docs/reference/replicated-cli-channel-ls.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ List all channels in your app
1010
replicated channel ls [flags]
1111
```
1212

13+
### Aliases
14+
15+
```
16+
ls, list
17+
```
18+
1319
### Options
1420

1521
```

docs/reference/replicated-cli-channel-rm.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ Remove (archive) a channel
1010
replicated channel rm CHANNEL_ID [flags]
1111
```
1212

13+
### Aliases
14+
15+
```
16+
rm, delete
17+
```
18+
1319
### Options
1420

1521
```
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# replicated channel un-demote
2+
3+
Un-demote a release from a channel
4+
5+
### Synopsis
6+
7+
Un-demote a channel release from a channel using a channel sequence or release sequence.
8+
9+
```
10+
replicated channel un-demote CHANNEL_ID_OR_NAME [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
# Un-demote a release from a channel by channel sequence
17+
replicated channel release un-demote Beta --channel-sequence 15
18+
19+
# Un-demote a release from a channel by release sequence
20+
replicated channel release un-demote Beta --release-sequence 12
21+
```
22+
23+
### Options
24+
25+
```
26+
--channel-sequence int The channel sequence to un-demote
27+
-h, --help help for un-demote
28+
--release-sequence int The release sequence to un-demote
29+
```
30+
31+
### Options inherited from parent commands
32+
33+
```
34+
--app string The app slug or app id to use in all calls
35+
--integration-test string Set to the name of the integration test to run
36+
--log-api-calls string Log the API calls to the specified file
37+
--token string The API token to use to access your app in the Vendor API
38+
```
39+
40+
### SEE ALSO
41+
42+
* [replicated channel](replicated-cli-channel) - List channels
43+
44+
###### Auto generated by spf13/cobra on 22-Jan-2025

docs/reference/replicated-cli-channel.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@ List channels
2525

2626
* [replicated](replicated) - Manage your Commercial Software Distribution Lifecycle using Replicated
2727
* [replicated channel create](replicated-cli-channel-create) - Create a new channel in your app
28+
* [replicated channel demote](replicated-cli-channel-demote) - Demote a release from a channel
2829
* [replicated channel disable-semantic-versioning](replicated-cli-channel-disable-semantic-versioning) - Disable semantic versioning for CHANNEL_ID
2930
* [replicated channel enable-semantic-versioning](replicated-cli-channel-enable-semantic-versioning) - Enable semantic versioning for CHANNEL_ID
3031
* [replicated channel inspect](replicated-cli-channel-inspect) - Show full details for a channel
3132
* [replicated channel ls](replicated-cli-channel-ls) - List all channels in your app
3233
* [replicated channel rm](replicated-cli-channel-rm) - Remove (archive) a channel
34+
* [replicated channel un-demote](replicated-cli-channel-un-demote) - Un-demote a release from a channel
3335

3436
###### Auto generated by spf13/cobra on 22-Jan-2025

docs/reference/replicated-cli-cluster-addon-ls.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ This can be useful for monitoring the health and configuration of add-ons or per
1212
replicated cluster addon ls CLUSTER_ID [flags]
1313
```
1414

15+
### Aliases
16+
17+
```
18+
ls, list
19+
```
20+
1521
### Examples
1622

1723
```

docs/reference/replicated-cli-cluster-addon-rm.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ This command is useful when you want to deprovision an add-on that is no longer
1212
replicated cluster addon rm CLUSTER_ID --id ADDON_ID [flags]
1313
```
1414

15+
### Aliases
16+
17+
```
18+
rm, delete
19+
```
20+
1521
### Examples
1622

1723
```

docs/reference/replicated-cli-cluster-ls.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ Clusters that have been deleted will be shown with a 'deleted' status.
1414
replicated cluster ls [flags]
1515
```
1616

17+
### Aliases
18+
19+
```
20+
ls, list
21+
```
22+
1723
### Examples
1824

1925
```

0 commit comments

Comments
 (0)