You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/reference/replicated-cli-cluster-addon-create-object-store.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,26 +7,26 @@ Create an object store bucket for a cluster.
7
7
Creates an object store bucket for a cluster, requiring a bucket name prefix. The bucket name will be auto-generated using the format "[BUCKET_PREFIX]-[ADDON_ID]-cmx". This feature provisions an object storage bucket that can be used for storage in your cluster environment.
Copy file name to clipboardExpand all lines: docs/reference/replicated-cli-cluster-addon-rm.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,12 @@ Remove cluster add-on by ID.
4
4
5
5
### Synopsis
6
6
7
-
The 'cluster addon rm' command allows you to remove a specific add-on from a cluster by specifying the cluster ID and the add-on ID.
7
+
The 'cluster addon rm' command allows you to remove a specific add-on from a cluster by specifying the cluster ID or name and the add-on ID.
8
8
9
9
This command is useful when you want to deprovision an add-on that is no longer needed or when troubleshooting issues related to specific add-ons. The add-on will be removed immediately, and you will receive confirmation upon successful removal.
Copy file name to clipboardExpand all lines: docs/reference/replicated-cli-cluster-kubeconfig.mdx
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,39 +6,39 @@ Download credentials for a test cluster.
6
6
7
7
The 'cluster kubeconfig' command downloads the credentials (kubeconfig) required to access a test cluster. You can either merge these credentials into your existing kubeconfig file or save them as a new file.
8
8
9
-
This command ensures that the kubeconfig is correctly configured for use with your Kubernetes tools. You can specify the cluster by ID or by name. Additionally, the kubeconfig can be written to a specific file path or printed to stdout.
9
+
This command ensures that the kubeconfig is correctly configured for use with your Kubernetes tools. You can specify the cluster by ID or name directly as an argument, or by using the '--id' or '--name' flags. Additionally, the kubeconfig can be written to a specific file path or printed to stdout.
10
10
11
11
You can also use this command to automatically update your current Kubernetes context with the downloaded credentials.
Copy file name to clipboardExpand all lines: docs/reference/replicated-cli-cluster-port-ls.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,12 @@ List cluster ports for a cluster.
4
4
5
5
### Synopsis
6
6
7
-
The 'cluster port ls' command lists all the ports configured for a specific cluster. You must provide the cluster ID to retrieve and display the ports.
7
+
The 'cluster port ls' command lists all the ports configured for a specific cluster. You must provide the cluster ID or name to retrieve and display the ports.
8
8
9
9
This command is useful for viewing the current port configurations, protocols, and other related settings of your test cluster. The output format can be customized to suit your needs, and the available formats include table, JSON, and wide views.
10
10
11
11
```
12
-
replicated cluster port ls CLUSTER_ID [flags]
12
+
replicated cluster port ls CLUSTER_ID_OR_NAME [flags]
13
13
```
14
14
15
15
### Aliases
@@ -22,13 +22,13 @@ ls, list
22
22
23
23
```
24
24
# List ports for a cluster in the default table format
25
-
replicated cluster port ls CLUSTER_ID
25
+
replicated cluster port ls CLUSTER_ID_OR_NAME
26
26
27
27
# List ports for a cluster in JSON format
28
-
replicated cluster port ls CLUSTER_ID --output json
28
+
replicated cluster port ls CLUSTER_ID_OR_NAME --output json
29
29
30
30
# List ports for a cluster in wide format
31
-
replicated cluster port ls CLUSTER_ID --output wide
31
+
replicated cluster port ls CLUSTER_ID_OR_NAME --output wide
0 commit comments