Use apiversion networking.k8s.io/v1 for ingress for JA

There is a warning deprecation message for kubernetes v1.19:

```
Warning: networking.k8s.io/v1beta1 Ingress is deprecated in v1.19+, unavailable in v1.22+; use networking.k8s.io/v1 Ingress
```

Switched apiversion in the example to `networking.k8s.io/v1`
pull/24224/head
Michael Nikitochkin 2020-09-23 18:50:02 +02:00
parent 572b62b938
commit 6ea8ce102c
No known key found for this signature in database
GPG Key ID: BABEADA52E807708
1 changed files with 13 additions and 7 deletions

View File

@ -135,7 +135,7 @@ weight: 100
1. 以下の内容で`example-ingress.yaml`を作成します。
```yaml
apiVersion: networking.k8s.io/v1beta1
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: example-ingress
@ -147,9 +147,12 @@ weight: 100
http:
paths:
- path: /
pathType: Prefix
backend:
serviceName: web
servicePort: 8080
service:
name: web
port:
number: 8080
```
1. 次のコマンドを実行して、Ingressリソースを作成します。
@ -175,8 +178,8 @@ weight: 100
{{< /note >}}
```shell
NAME HOSTS ADDRESS PORTS AGE
example-ingress hello-world.info 172.17.0.15 80 38s
NAME CLASS HOSTS ADDRESS PORTS AGE
example-ingress <none> hello-world.info 172.17.0.15 80 38s
```
1. 次の行を`/etc/hosts`ファイルの最後に書きます。
@ -241,9 +244,12 @@ weight: 100
```yaml
- path: /v2
pathType: Prefix
backend:
serviceName: web2
servicePort: 8080
service:
name: web2
port:
number: 8080
```
1. 次のコマンドで変更を適用します。