diff --git a/docs/cloud-rollup/digital-ocean.mdx b/docs/cloud-rollup/digital-ocean.mdx
index e2576fe8..d95d175c 100644
--- a/docs/cloud-rollup/digital-ocean.mdx
+++ b/docs/cloud-rollup/digital-ocean.mdx
@@ -9,7 +9,6 @@ a Kubernetes cluster on Digital Ocean which uses the Astria shared sequencer net
## Local Dependencies
-### Install the latest Astria cli
import RemoteCli from '../components/_cli-cloud.mdx';
@@ -29,6 +28,11 @@ Install and configure `doctl`: [https://docs.digitalocean.com/reference/doctl/ho
Follow the instructions in Digital Ocean's [Quick Start Guide](https://docs.digitalocean.com/products/kubernetes/getting-started/)
to create a new cluster in the region of your choosing.
+:::tip
+The celestia pod has a minimum requirement of 1vCPU and 4GB RAM and will not start if the
+cluster has no nodes that meet those requirements. You will need a node with >1vCPU and >4GB RAM.
+:::
+
## Configure `kubectl` with `doctl`
Once your k8s cluster is created configure `kubectl`.
@@ -132,7 +136,7 @@ Replace the tags in the commands and env vars below, as follows:
| Var Name | Var Type | Description |
|-----|-----|-----|
-| `` | String | The name of your rollup. This must be alphanumeric, `-` is allowed, this will be included in URLs|
+| `` | String | The name of your rollup. This must be alphanumeric, `-` is allowed, this will be included in URLs. Must not be more than 21 characters.|
| `` | u64 | The id of your network. Pick a > 6 digit number (eg. `123456`) |
| `` | String | The chosen hostname for your network (eg. `astria.org`) |
diff --git a/docs/components/_astria-cli-install.mdx b/docs/components/_astria-cli-install.mdx
index d01ea317..c9634ca1 100644
--- a/docs/components/_astria-cli-install.mdx
+++ b/docs/components/_astria-cli-install.mdx
@@ -1,9 +1,3 @@
-### Clone the Astria [dev-cluster](https://github.com/astriaorg/dev-cluster/tree/main)
-
-```bash
-git clone --branch dusk-3 https://github.com/astriaorg/dev-cluster.git
-```
-
### Install the latest [astria cli](https://github.com/astriaorg/astria/releases/tag/cli-v0.2.2)
import Tabs from '@theme/Tabs';
@@ -15,6 +9,7 @@ import TabItem from '@theme/TabItem';
```bash
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.3.1/astria-cli-aarch64-apple-darwin.tar.gz > astria-cli.tar.gz
tar -xvzf astria-cli.tar.gz
+ mv astria-cli /usr/local/bin/
```
@@ -23,6 +18,7 @@ import TabItem from '@theme/TabItem';
```bash
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.3.1/astria-cli-x86_64-apple-darwin.tar.gz > astria-cli.tar.gz
tar -xvzf astria-cli.tar.gz
+ mv astria-cli /usr/local/bin/
```
@@ -31,6 +27,7 @@ import TabItem from '@theme/TabItem';
```bash
curl -L https://github.com/astriaorg/astria/releases/download/cli-v0.3.1/astria-cli-x86_64-unknown-linux-gnu.tar.gz > astria-cli.tar.gz
tar -xvzf astria-cli.tar.gz
+ mv astria-cli /usr/local/bin/
```
diff --git a/docs/local-rollup/1-introduction.mdx b/docs/local-rollup/1-introduction.mdx
index 7e762f89..609f6717 100644
--- a/docs/local-rollup/1-introduction.mdx
+++ b/docs/local-rollup/1-introduction.mdx
@@ -18,7 +18,12 @@ If you would like to deploy a rollup on a remote Kubernetes cluster,
This guide has been tested on MacOS and Linux but not Windows
:::
-### Install the latest Astria cli
+### Clone the Astria [dev-cluster](https://github.com/astriaorg/dev-cluster/tree/main)
+
+```bash
+git clone --branch dusk-3 https://github.com/astriaorg/dev-cluster.git
+```
+
import LocalCli from '../components/_cli-local.mdx';