Skip to content

Commit ff4eb02

Browse files
committed
Adds in emulator note to single and multicluster setup docs
1 parent cb6af9c commit ff4eb02

File tree

4 files changed

+60
-0
lines changed

4 files changed

+60
-0
lines changed

docs/getting-started/multi-cluster.mdx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ description: Deploy OpenChoreo across multiple Kubernetes clusters for productio
66
import CodeBlock from '@theme/CodeBlock';
77
import Link from '@docusaurus/Link';
88
import {versions} from '../_constants.mdx';
9+
import Tabs from '@theme/Tabs';
10+
import TabItem from '@theme/TabItem';
911

1012
# Multi Cluster Setup
1113

@@ -16,6 +18,19 @@ This guide walks you through step-by-step instructions for deploying OpenChoreo
1618
- **Docker** – Just have it installed on your machine, and you're good to go.
1719
- We recommend using [Docker Engine version 26.0+](https://docs.docker.com/engine/release-notes/26.0/).
1820
- Allocate at least **8 GB RAM** and **4 CPU** cores to Docker (or the VM running Docker).
21+
- **Important**: For Mac users enable Rosetta emulator instead of QEMU to ensure buildpacks work correctly:
22+
23+
<Tabs>
24+
<TabItem value="docker-desktop" label="Docker Desktop" default>
25+
Go to Docker Desktop Settings → General → Enable "Use Rosetta for x86/amd64 emulation on Apple Silicon"
26+
</TabItem>
27+
<TabItem value="colima" label="Colima">
28+
Start Colima with Rosetta: `colima start --vm-type=vz --vz-rosetta`
29+
</TabItem>
30+
<TabItem value="rancher" label="Rancher Desktop">
31+
Go to Rancher Desktop Settings → Container Engine → Enable "Use Rosetta for x86_64 emulation"
32+
</TabItem>
33+
</Tabs>
1934
- [Kind](https://kind.sigs.k8s.io/docs/user/quick-start/#installation) v0.20+ installed
2035
- [kubectl](https://kubernetes.io/docs/tasks/tools/) v1.32+ installed
2136
- [Helm](https://helm.sh/docs/intro/install/) v3.12+ installed

docs/getting-started/single-cluster.mdx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ description: Deploy OpenChoreo on a single Kubernetes cluster for development an
66
import CodeBlock from '@theme/CodeBlock';
77
import Link from '@docusaurus/Link';
88
import {versions} from '../_constants.mdx';
9+
import Tabs from '@theme/Tabs';
10+
import TabItem from '@theme/TabItem';
911

1012
# Single Cluster Setup
1113

@@ -16,6 +18,19 @@ This guide provides step-by-step instructions for setting up a local development
1618
- **Docker** – Just have it installed on your machine, and you're good to go.
1719
- We recommend using [Docker Engine version 26.0+](https://docs.docker.com/engine/release-notes/26.0/).
1820
- Allocate at least **8 GB RAM** and **4 CPU** cores to Docker (or the VM running Docker).
21+
- **Important**: For Mac users enable Rosetta emulator instead of QEMU to ensure buildpacks work correctly:
22+
23+
<Tabs>
24+
<TabItem value="docker-desktop" label="Docker Desktop" default>
25+
Go to Docker Desktop Settings → General → Enable "Use Rosetta for x86/amd64 emulation on Apple Silicon"
26+
</TabItem>
27+
<TabItem value="colima" label="Colima">
28+
Start Colima with Rosetta: `colima start --vm-type=vz --vz-rosetta`
29+
</TabItem>
30+
<TabItem value="rancher" label="Rancher Desktop">
31+
Go to Rancher Desktop Settings → Container Engine → Enable "Use Rosetta for x86_64 emulation"
32+
</TabItem>
33+
</Tabs>
1934
- **[Kind](https://kind.sigs.k8s.io/docs/user/quick-start/#installation)** v0.20+ installed
2035
- **[kubectl](https://kubernetes.io/docs/tasks/tools/)** v1.32+ installed
2136
- **[Helm](https://helm.sh/docs/intro/install/)** v3.12+ installed

versioned_docs/version-v0.3.x/getting-started/multi-cluster.mdx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ description: Deploy OpenChoreo across multiple Kubernetes clusters for productio
66
import CodeBlock from '@theme/CodeBlock';
77
import Link from '@docusaurus/Link';
88
import {versions} from '../_constants.mdx';
9+
import Tabs from '@theme/Tabs';
10+
import TabItem from '@theme/TabItem';
911

1012
# Multi Cluster Setup
1113

@@ -16,6 +18,19 @@ This guide walks you through step-by-step instructions for deploying OpenChoreo
1618
- **Docker** – Just have it installed on your machine, and you're good to go.
1719
- We recommend using [Docker Engine version 26.0+](https://docs.docker.com/engine/release-notes/26.0/).
1820
- Allocate at least **8 GB RAM** and **4 CPU** cores to Docker (or the VM running Docker).
21+
- **Important**: For Mac users enable Rosetta emulator instead of QEMU to ensure buildpacks work correctly:
22+
23+
<Tabs>
24+
<TabItem value="docker-desktop" label="Docker Desktop" default>
25+
Go to Docker Desktop Settings → General → Enable "Use Rosetta for x86/amd64 emulation on Apple Silicon"
26+
</TabItem>
27+
<TabItem value="colima" label="Colima">
28+
Start Colima with Rosetta: `colima start --vm-type=vz --vz-rosetta`
29+
</TabItem>
30+
<TabItem value="rancher" label="Rancher Desktop">
31+
Go to Rancher Desktop Settings → Container Engine → Enable "Use Rosetta for x86_64 emulation"
32+
</TabItem>
33+
</Tabs>
1934
- [Kind](https://kind.sigs.k8s.io/docs/user/quick-start/#installation) v0.20+ installed
2035
- [kubectl](https://kubernetes.io/docs/tasks/tools/) v1.32+ installed
2136
- [Helm](https://helm.sh/docs/intro/install/) v3.12+ installed

versioned_docs/version-v0.3.x/getting-started/single-cluster.mdx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ description: Deploy OpenChoreo on a single Kubernetes cluster for development an
66
import CodeBlock from '@theme/CodeBlock';
77
import Link from '@docusaurus/Link';
88
import {versions} from '../_constants.mdx';
9+
import Tabs from '@theme/Tabs';
10+
import TabItem from '@theme/TabItem';
911

1012
# Single Cluster Setup
1113

@@ -16,6 +18,19 @@ This guide provides step-by-step instructions for setting up a local development
1618
- **Docker** – Just have it installed on your machine, and you're good to go.
1719
- We recommend using [Docker Engine version 26.0+](https://docs.docker.com/engine/release-notes/26.0/).
1820
- Allocate at least **8 GB RAM** and **4 CPU** cores to Docker (or the VM running Docker).
21+
- **Important**: For Mac users enable Rosetta emulator instead of QEMU to ensure buildpacks work correctly:
22+
23+
<Tabs>
24+
<TabItem value="docker-desktop" label="Docker Desktop" default>
25+
Go to Docker Desktop Settings → General → Enable "Use Rosetta for x86/amd64 emulation on Apple Silicon"
26+
</TabItem>
27+
<TabItem value="colima" label="Colima">
28+
Start Colima with Rosetta: `colima start --vm-type=vz --vz-rosetta`
29+
</TabItem>
30+
<TabItem value="rancher" label="Rancher Desktop">
31+
Go to Rancher Desktop Settings → Container Engine → Enable "Use Rosetta for x86_64 emulation"
32+
</TabItem>
33+
</Tabs>
1934
- **[Kind](https://kind.sigs.k8s.io/docs/user/quick-start/#installation)** v0.20+ installed
2035
- **[kubectl](https://kubernetes.io/docs/tasks/tools/)** v1.32+ installed
2136
- **[Helm](https://helm.sh/docs/intro/install/)** v3.12+ installed

0 commit comments

Comments
 (0)