From 4b5c7f18d2d34b48dd71cdb5f24a7870ee2ff8e0 Mon Sep 17 00:00:00 2001 From: augustkang Date: Tue, 18 Aug 2020 18:47:11 +0900 Subject: [PATCH 1/2] add closing fence --- .../ko/docs/tutorials/stateful-application/basic-stateful-set.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/ko/docs/tutorials/stateful-application/basic-stateful-set.md b/content/ko/docs/tutorials/stateful-application/basic-stateful-set.md index c7d57d8633..41ef9aa4c1 100644 --- a/content/ko/docs/tutorials/stateful-application/basic-stateful-set.md +++ b/content/ko/docs/tutorials/stateful-application/basic-stateful-set.md @@ -92,6 +92,7 @@ nginx ClusterIP None 80/TCP 12s ```shell kubectl get statefulset web ``` +``` NAME DESIRED CURRENT AGE web 2 1 20s ``` From b55ef2498fc67652f1b322713ff993c2e2505c63 Mon Sep 17 00:00:00 2001 From: augustkang Date: Tue, 18 Aug 2020 19:03:09 +0900 Subject: [PATCH 2/2] add missing code block fence --- .../docs/tutorials/stateful-application/basic-stateful-set.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/ko/docs/tutorials/stateful-application/basic-stateful-set.md b/content/ko/docs/tutorials/stateful-application/basic-stateful-set.md index 41ef9aa4c1..488de4e60c 100644 --- a/content/ko/docs/tutorials/stateful-application/basic-stateful-set.md +++ b/content/ko/docs/tutorials/stateful-application/basic-stateful-set.md @@ -85,6 +85,8 @@ statefulset.apps/web created ```shell kubectl get service nginx +``` +``` NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE nginx ClusterIP None 80/TCP 12s ```