Skip to content

Commit

Permalink
improve deploy doc (#441)
Browse files Browse the repository at this point in the history
tag: main
image: streamnative/oxia
  • Loading branch information
labuladong authored Feb 20, 2024
1 parent d7704ad commit 017b848
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions docs/k8s-deploy.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Deploying in Kubernetes with Oxia cluster Helm chart

## Deploying the Oxia cluster

To deploy the Oxia cluster with Helm:

```shell
$ kubectl create namespace oxia

$ git clone https://github.com/streamnative/oxia.git

$ cd oxia

$ helm upgrade --install oxia \
--namespace oxia \
--set image.repository=streamnative/oxia \
--set image.tag=main \
--set image.pullPolicy=IfNotPresent \
deploy/charts/oxia-cluster
```

## Monitoring Oxia

Oxia support monitoring through exposing a `ServiceMonitor` profile. If you have already a Prometheus deployment
Expand Down Expand Up @@ -57,22 +76,3 @@ $ rm -rf kube-prometheus-stack*
```

> ***Note***: The default login credentials for grafana are admin/prom-operator.
## Deploying the Oxia cluster

To deploy the Oxia cluster with Helm:

```shell
$ kubectl create namespace oxia

$ git clone https://github.com/streamnative/oxia.git

$ cd oxia

$ helm upgrade --install oxia \
--namespace oxia \
--set image.repository=oxia \
--set image.tag=latest \
--set image.pullPolicy=Never \
deploy/charts/oxia-cluster
```

0 comments on commit 017b848

Please sign in to comment.