Skip to content

Commit

Permalink
Update deploy-by-helm.md
Browse files Browse the repository at this point in the history
  • Loading branch information
johnlanni authored Nov 16, 2023
1 parent d3aa9c1 commit ae156b7
Showing 1 changed file with 17 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![image](https://github.com/higress-group/higress-group.github.io/assets/6763318/ebe50a56-8abf-41d0-9511-3fb53c6ec9f8)---
---
title: 使用 Helm 进行云原生部署
keywords: [deploy,helm,kubernetes,k8s,ops]
description: Higress Helm部署.
Expand Down Expand Up @@ -63,3 +63,19 @@ helm install istio-base istio/base -n istio-system --create-namespace
```bash
helm upgrade higress -n higress-system --set global.enableIstioAPI=true higress.io/higress --reuse-values
```

## 支持 Gateway API CRD(可选)

集群里需要提前安装好 Gateway API 的 CRD:https://github.com/kubernetes-sigs/gateway-api/releases

以1.0.0为例:

```bash
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.0.0/experimental-install.yaml
```

这种模式下,需要更新 Higress 的部署参数:

```bash
helm upgrade higress -n higress-system --set global.enableGatewayAPI=true higress.io/higress --reuse-values
```

0 comments on commit ae156b7

Please sign in to comment.