Skip to content

Commit

Permalink
operator-publish-1.4.2 (#2061)
Browse files Browse the repository at this point in the history
Update 3.2create-cluster-with-helm.md
  • Loading branch information
abby-cyber authored Apr 12, 2023
1 parent effee92 commit 4e23562
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ NebulaGraph Operator does not support the v1.x version of NebulaGraph. NebulaGra

| NebulaGraph |NebulaGraph Operator |
| ------------------- | ----------- |
| 3.0.0 ~ 3.4.1 |1.3.0, 1.4.0|
| 3.0.0 ~ 3.4.1 |1.3.0, 1.4.0 ~ 1.4.2|
| 3.0.0 ~ 3.3.x |1.0.0, 1.1.0, 1.2.0|
| 2.5.x ~ 2.6.x |0.9.0|
| 2.5.x |0.8.0|
Expand Down
6 changes: 3 additions & 3 deletions docs-2.0/nebula-operator/2.deploy-nebula-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ Before installing NebulaGraph Operator, you need to install the following softwa

### Install NebulaGraph Operator

1. Add the NebulaGraph Operator chart repository to Helm.
1. Add the NebulaGraph Operator Helm repository.

```bash
helm repo add nebula-operator https://vesoft-inc.github.io/nebula-operator/charts
```

2. Update information of available charts locally from chart repositories.
1. Update information of available charts locally from repositories.

```bash
helm repo update
Expand All @@ -54,7 +54,7 @@ Before installing NebulaGraph Operator, you need to install the following softwa

- `nebula-operator-system` is a user-created namespace name. If you have not created this namespace, run `kubectl create namespace nebula-operator-system` to create one. You can also use a different name.

- `{{operator.release}}` is the version of the NebulaGraph Operator chart. It can be unspecified when there is only one chart version in the NebulaGraph Operator chart repository. Run `helm search repo -l nebula-operator` to see chart versions.
- `{{operator.release}}` is the version of the NebulaGraph Operator chart. When not specifying `--version`, the latest version of the nebula-operator chart is used by default. Run `helm search repo -l nebula-operator` to see chart versions.

You can customize the configuration items of the NebulaGraph Operator chart before running the installation command. For more information, see **Customize Helm charts** below.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

## Create clusters

1. Add the NebulaGraph Operator chart repository to Helm (If you have already added the chart, skip the 1-2 steps and start from step 3).
1. Add the NebulaGraph Operator Helm repository.

```bash
helm repo add nebula-operator https://vesoft-inc.github.io/nebula-operator/charts
Expand Down Expand Up @@ -72,7 +72,11 @@
helm install "${NEBULA_CLUSTER_NAME}" nebula-operator/nebula-cluster \
--namespace="${NEBULA_CLUSTER_NAMESPACE}" \
--set nameOverride=${NEBULA_CLUSTER_NAME} \
--set nebula.storageClassName="${STORAGE_CLASS_NAME}"
--set nebula.storageClassName="${STORAGE_CLASS_NAME}"\
# Specify the version of the NebulaGraph cluster.
--set nebula.version={{nebula.release}} \
# Specify the version of the nebula-cluster chart. If not specified, the latest version of the chart is installed by default.
--version={{operator.release}}
```

{{ ent.ent_begin }}
Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@ extra:
branch: release-1.2
tag: v1.2.0
operator:
release: 1.4.0
tag: v1.4.0
release: 1.4.2
tag: v1.4.2
branch: release-1.4
upgrade_from: 3.0.0
upgrade_to: 3.4.0
Expand Down

0 comments on commit 4e23562

Please sign in to comment.