Merge pull request #21691 from ryok-0319/ryok-0319/expose-external-ip-address-v1-17-ja

Update ja/docs/tutorials/stateless-application/expose-external-ip-add…
pull/21694/head
Kubernetes Prow Robot 2020-06-12 18:59:56 -07:00 committed by GitHub
commit a31eb264be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 3 deletions

View File

@ -69,7 +69,17 @@ kubectl apply -f https://k8s.io/examples/service/load-balancer-example.yaml
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
my-service LoadBalancer 10.3.245.137 104.198.205.71 8080/TCP 54s
注意: 外部IPアドレスが\<pending\>と表示されている場合は、しばらく待ってから同じコマンドを実行してください。
{{< note >}}
`type=LoadBalancer`のServiceは外部のクラウドプロバイダーによってサポートされており、ここでは扱いません。詳細は[こちらのページ](/ja/docs/concepts/services-networking/service/#loadbalancer)を参照してください。
{{< /note >}}
{{< note >}}
外部IPアドレスが\<pending\>と表示されている場合は、しばらく待ってから同じコマンドを実行してください。
{{< /note >}}
1. Serviceに関する詳細な情報を表示します:
@ -131,11 +141,11 @@ kubectl apply -f https://k8s.io/examples/service/load-balancer-example.yaml
Serviceを削除する場合、次のコマンドを実行します:
kubectl delete services my-service
kubectl delete services my-service
Deployment、ReplicaSet、およびHello Worldアプリケーションが動作しているPodを削除する場合、次のコマンドを実行します:
kubectl delete deployment hello-world
kubectl delete deployment hello-world
{{% /capture %}}