From 769d889468e8daec1a99604685e4539a99571fef Mon Sep 17 00:00:00 2001 From: ryok-0319 Date: Sat, 13 Jun 2020 08:14:45 +0900 Subject: [PATCH] Update ja/docs/tutorials/stateless-application/expose-external-ip-address.md --- .../expose-external-ip-address.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md b/content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md index 74d973fdf2..45bfbe5ace 100644 --- a/content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md +++ b/content/ja/docs/tutorials/stateless-application/expose-external-ip-address.md @@ -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アドレスが\と表示されている場合は、しばらく待ってから同じコマンドを実行してください。 + {{< note >}} + + `type=LoadBalancer`のServiceは外部のクラウドプロバイダーによってサポートされており、この例ではカバーされていません。詳細は[このページ](/ja/docs/concepts/services-networking/service/#loadbalancer)を参照してください。 + + {{< /note >}} + + {{< note >}} + + 外部IPアドレスが\と表示されている場合は、しばらく待ってから同じコマンドを実行してください。 + + {{< /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 %}}