Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

operator-release-1.7.3 #2371

Merged
merged 2 commits into from
Nov 24, 2023
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,20 @@
helm repo update
```

3. Upgrade NebulaGraph Operator to version {{operator.release}}.
3. View the latest version of NebulaGraph Operator.

```bash
helm search repo nebula-operator/nebula-operator
```

Example output:

```bash
NAME CHART VERSION APP VERSION DESCRIPTION
nebula-operator/nebula-operator {{operator.release}} {{operator.release}} Nebula Operator Helm chart for Kubernetes
```

4. Upgrade NebulaGraph Operator to version {{operator.release}}.

```bash
helm upgrade nebula-operator nebula-operator/nebula-operator --namespace=<namespace_name> --version={{operator.release}}
Expand All @@ -52,7 +65,7 @@
NebulaGraph Operator installed!
```

4. Pull the latest CRD configuration file.
5. Pull the latest CRD configuration file.

!!! note
You need to upgrade the corresponding CRD configurations after NebulaGraph Operator is upgraded. Otherwise, the creation of NebulaGraph clusters will fail. For information about the CRD configurations, see [apps.nebula-graph.io_nebulaclusters.yaml](https://github.com/vesoft-inc/nebula-operator/blob/{{operator.tag}}/config/crd/bases/apps.nebula-graph.io_nebulaclusters.yaml).
Expand All @@ -76,7 +89,7 @@
- `-C /tmp`: If not specified, the chart files will be unpacked to the current directory.


5. Upgrade the CRD configuration file in the `nebula-operator` directory.
6. Apply the latest CRD configuration file in the `nebula-operator` directory.

```bash
kubectl apply -f crds/nebulaclusters.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,20 @@
helm repo update
```

3. 升级 NebulaGraph Operator 至 {{operator.release}} 版本。
3. 查看最新的 NebulaGraph Operator 版本。

```bash
helm search repo nebula-operator/nebula-operator
```

返回示例:

```bash
NAME CHART VERSION APP VERSION DESCRIPTION
nebula-operator/nebula-operator {{operator.release}} {{operator.release}} Nebula Operator Helm chart for Kubernetes
```

4. 升级 NebulaGraph Operator 至 {{operator.release}} 版本。

```bash
helm upgrade nebula-operator nebula-operator/nebula-operator --namespace=<namespace_name> --version={{operator.release}}
Expand All @@ -54,7 +67,7 @@
NebulaGraph Operator installed!
```

4. 拉取最新的 CRD 配置文件。
5. 拉取最新的 CRD 配置文件。


!!! note
Expand All @@ -80,7 +93,7 @@
- `-C /tmp`: 如不指定,则默认解压至当前路径。


5. 在`nebula-operator`目录下升级 CRD 配置文件。
6. 在`nebula-operator`目录下应用最新的 CRD 配置文件。

```bash
kubectl apply -f crds/nebulaclusters.yaml
Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,8 @@ extra:
branch: release-1.2
tag: v1.2.0
operator:
release: 1.7.2
tag: v1.7.2
release: 1.7.3
tag: v1.7.3
branch: release-1.7
upgrade_from: 3.5.0
upgrade_to: 3.6.0
Expand Down