Skip to content
31 changes: 31 additions & 0 deletions docs/content/en/docs-dev/quickstart/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,37 @@ Note:
### Prerequisites
- Having a Kubernetes cluster and connect to it via [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/).

#### Setting Up a Kubernetes Cluster with Minikube

If you don't already have a Kubernetes cluster, you can create a local one using Minikube (recommended for local development and testing).

**Installation:**
Comment thread
vedantlavale marked this conversation as resolved.

Follow the [official installation guide](https://minikube.sigs.k8s.io/docs/start/).

**Starting a Cluster:**

```bash
minikube start
```

**Verifying the Setup:**

```bash
kubectl cluster-info
kubectl get nodes
```

If the cluster is running correctly, you should see a node with `STATUS` as `Ready`.

Your local Kubernetes cluster is now ready. You can proceed with the PipeCD installation steps below.

**Troubleshooting:**

If you encounter driver-related issues, ensure that a supported driver is installed and running. See [supported drivers](https://minikube.sigs.k8s.io/docs/drivers/).

For more details, refer to the [Minikube documentation](https://minikube.sigs.k8s.io/docs/).

### 1. Installing PipeCD in quickstart mode

Across the [PipeCD concepts](/docs/concepts/), PipeCD platform is constructed by 2 components: Control Plane and Piped (the agent).
Expand Down
31 changes: 31 additions & 0 deletions docs/content/en/docs-v0.55.x/quickstart/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,37 @@ Note:
### Prerequisites
- Having a Kubernetes cluster and connect to it via [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/).

#### Setting Up a Kubernetes Cluster with Minikube

If you don't already have a Kubernetes cluster, you can create a local one using Minikube (recommended for local development and testing).

**Installation:**

Follow the [official installation guide](https://minikube.sigs.k8s.io/docs/start/).

**Starting a Cluster:**

```bash
minikube start
```

**Verifying the Setup:**

```bash
kubectl cluster-info
kubectl get nodes
```

If the cluster is running correctly, you should see a node with `STATUS` as `Ready`.

Your local Kubernetes cluster is now ready. You can proceed with the PipeCD installation steps below.

**Troubleshooting:**

If you encounter driver-related issues, ensure that a supported driver is installed and running. See [supported drivers](https://minikube.sigs.k8s.io/docs/drivers/).

For more details, refer to the [Minikube documentation](https://minikube.sigs.k8s.io/docs/).

### 1. Installing PipeCD in quickstart mode

Across the [PipeCD concepts](/docs/concepts/), PipeCD platform is constructed by 2 components: Control Plane and Piped (the agent).
Expand Down
31 changes: 31 additions & 0 deletions docs/content/en/docs-v0.56.x/quickstart/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,37 @@ Note:
### Prerequisites
- Having a Kubernetes cluster and connect to it via [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/).

#### Setting Up a Kubernetes Cluster with Minikube

If you don't already have a Kubernetes cluster, you can create a local one using Minikube (recommended for local development and testing).

**Installation:**
Comment thread
vedantlavale marked this conversation as resolved.

Follow the [official installation guide](https://minikube.sigs.k8s.io/docs/start/).

**Starting a Cluster:**

```bash
minikube start
```

**Verifying the Setup:**

```bash
kubectl cluster-info
kubectl get nodes
```

If the cluster is running correctly, you should see a node with `STATUS` as `Ready`.

Your local Kubernetes cluster is now ready. You can proceed with the PipeCD installation steps below.

**Troubleshooting:**

If you encounter driver-related issues, ensure that a supported driver is installed and running. See [supported drivers](https://minikube.sigs.k8s.io/docs/drivers/).

For more details, refer to the [Minikube documentation](https://minikube.sigs.k8s.io/docs/).

### 1. Installing PipeCD in quickstart mode

Across the [PipeCD concepts](/docs/concepts/), PipeCD platform is constructed by 2 components: Control Plane and Piped (the agent).
Expand Down
31 changes: 31 additions & 0 deletions docs/content/en/docs-v1.0.x/quickstart/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,37 @@ In this quickstart, you’ll install both components on a Kubernetes cluster and
- A running Kubernetes cluster.
- [`kubectl`](https://kubernetes.io/docs/tasks/tools/install-kubectl/) installed and configured to connect to your cluster.
Comment thread
vedantlavale marked this conversation as resolved.

#### Setting Up a Kubernetes Cluster with Minikube

If you don't already have a Kubernetes cluster, you can create a local one using Minikube (recommended for local development and testing).

**Installation:**

Follow the [official installation guide](https://minikube.sigs.k8s.io/docs/start/).

**Starting a Cluster:**

```bash
minikube start
```

**Verifying the Setup:**

```bash
kubectl cluster-info
kubectl get nodes
```

If the cluster is running correctly, you should see a node with `STATUS` as `Ready`.

Your local Kubernetes cluster is now ready. You can proceed with the PipeCD installation steps below.

**Troubleshooting:**

If you encounter driver-related issues, ensure that a supported driver is installed and running. See [supported drivers](https://minikube.sigs.k8s.io/docs/drivers/).

For more details, refer to the [Minikube documentation](https://minikube.sigs.k8s.io/docs/).

---

### 1. Installation
Expand Down
Loading