Skip to content

Commit

Permalink
Merge pull request #97 from wai4y/main
Browse files Browse the repository at this point in the history
docs: fix typo
  • Loading branch information
guangzhengli authored Dec 25, 2023
2 parents 08adc0f + 5fa741a commit 1876239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,7 @@ kubectl get service

这样在 k8s 集群中,就有 3 个 `hellok8s:v3` 的 pod,2 个 `nginx` 的 pod。并且`hellok8s:v3` 的端口映射为 `3000:3000`,`nginx` 的端口映射为 `4000:80`。在这个基础上,接下来编写 Ingress 资源的定义,`nginx.ingress.kubernetes.io/ssl-redirect: "false"` 的意思是这里关闭 `https` 连接,只使用 `http` 连接。

匹配前缀为 `/hello` 的路由规则,重定向到 `hellok8s:v3` 服务,匹配前缀为 `/` 的跟路径重定向到 `nginx`。
匹配前缀为 `/hello` 的路由规则,重定向到 `hellok8s:v3` 服务,匹配前缀为 `/` 的根路径重定向到 `nginx`。

```yaml
apiVersion: networking.k8s.io/v1
Expand Down

0 comments on commit 1876239

Please sign in to comment.