diff --git a/docs/reference/replicated-cli-cluster-prepare.md b/docs/reference/replicated-cli-cluster-prepare.md
index 32658683b..98d66e718 100644
--- a/docs/reference/replicated-cli-cluster-prepare.md
+++ b/docs/reference/replicated-cli-cluster-prepare.md
@@ -5,9 +5,10 @@ import Help from "../partials/replicated-cli/_help.mdx"
Create a cluster and a release, then install the release in the cluster. This allows you to deploy applications to a cluster for compatibility testing without needing to promote a release to a channel or create a temporary customer. For more information, see [About Compatibility Matrix](/vendor/testing-about).
-:::note
-`cluster prepare` is not recommended for production testing. For production testing, use `cluster create` instead.
-:::
+## Limtiations
+
+* `cluster prepare` is not recommended for production testing. For production testing, use `cluster create` instead.
+* `cluster prepare` is not supported for the Embedded Cluster type.
## Usage
```bash
diff --git a/docs/vendor/testing-how-to.md b/docs/vendor/testing-how-to.md
index b7b500235..5f47154c7 100644
--- a/docs/vendor/testing-how-to.md
+++ b/docs/vendor/testing-how-to.md
@@ -37,14 +37,17 @@ To create a cluster using the Replicated CLI:
1. Run the following command to create a cluster:
```
- replicated cluster create --name NAME --distribution K8S_DISTRO --version K8S_VERSION --disk DISK_SIZE --instance-type INSTANCE_TYPE
+ replicated cluster create --name NAME --distribution K8S_DISTRO --version K8S_VERSION --disk DISK_SIZE --instance-type INSTANCE_TYPE [--license-id LICENSE_ID]
```
Where:
* `NAME` is any name for the cluster. If `--name` is excluded, a name is automatically generated for the cluster.
* `K8S_DISTRO` is the Kubernetes distribution for the cluster.
- * `K8S_VERSION` is the Kubernetes version for the cluster.
+ * `K8S_VERSION` is the Kubernetes version for the cluster if creating a standard Cloud or VM-based cluster. If creating an Embedded Cluster or kURL cluster type,`--version` is optional:
+ * For Embedded Cluster types, `--verison` is the latest available release on the channel by default. Otherwise, to specify a different release, set `--version` to the `Channel release sequence` value for the release.
+ * For kURL cluster types, `--verison` is the `"latest"` kURL Installer ID by default. Otherwise, to specify a different kURL Installer, set `--version` to the kURL Installer ID.
* `DISK_SIZE` is the disk size (GiB) to request per node.
* `INSTANCE_TYPE` is the instance type to use for each node.
+ * (Embedded Cluster Only) `LICENSE_ID` is a valid customer license. Required to create an Embedded Cluster.
For command usage and additional optional flags, see [cluster create](/reference/replicated-cli-cluster-create).
@@ -307,4 +310,4 @@ Replicated recommends that you maintain unique CI/CD workflows for development (
Incorporating code tests into your CI/CD workflows is important for ensuring that developers receive quick feedback and can make updates in small iterations. Replicated recommends that you create and run all of the following test types as part of your CI/CD workflows:
-
For additional limitations that apply to all distributions, see Limitations.
@@ -267,7 +267,7 @@ Compatibility Matrix supports creating [kURL](https://kurl.sh) clusters.