Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 31 additions & 1 deletion hadoop-hdds/docs/content/start/Kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ weight: 22
* kubectl
{{< /requirements >}}


As the _apache/ozone_ docker images are available from the dockerhub the deployment process is very similar to Minikube deployment. The only big difference is that we have dedicated set of k8s files for hosted clusters (for example we can use one datanode per host)
Deploy to kubernetes

Expand All @@ -51,3 +50,34 @@ Now you can access any of the services. By default the services are not publishe
kubectl port-forward s3g-0 9878:9878
kubectl port-forward scm-0 9876:9876
```

## Apache Ozone Helm Chart

For a streamlined deployment of Apache Ozone on Kubernetes, consider using the [Apache Ozone Helm Chart](https://apache.github.io/ozone-helm-charts/). This Helm Chart simplifies the installation and management of an Ozone cluster by packaging best practices into a set of configurable Kubernetes resources.

1. **Add the Ozone Helm Repository**

First, add the Apache Ozone Helm repository and update your local Helm repo cache:

```bash
helm repo add ozone-helm https://apache.github.io/ozone-helm-charts/
helm repo update
```

2. Install the Chart

Install the Ozone Helm Chart using the following command. This command deploys a default Ozone cluster:

```bash
helm install my-ozone-cluster ozone-helm/ozone
```

3. Customize Your Deployment

To customize the configuration, create or modify a values.yaml file with your desired settings and install the chart as follows:

```bash
helm install my-ozone-cluster -f values.yaml ozone-helm/ozone
```

For more detailed documentation and advanced configuration options, please refer to the [Apache Ozone Helm Chart](https://apache.github.io/ozone-helm-charts/) documentation.