From 1312245f23e00c82bd9c44b84e6a2c3d82ff43b5 Mon Sep 17 00:00:00 2001 From: Kelsey Hightower Date: Thu, 7 Jul 2016 15:23:01 -0700 Subject: [PATCH] update docs --- docs/smoke-test.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/docs/smoke-test.md b/docs/smoke-test.md index ef67263..20ddbbd 100644 --- a/docs/smoke-test.md +++ b/docs/smoke-test.md @@ -23,11 +23,29 @@ nginx-2032906785-u8rzc 1/1 Running 0 21s 10.200.0.2 w ``` ``` -kubectl expose deployment nginx +kubectl expose deployment nginx --type NodePort ``` ``` service "nginx" exposed ``` -> Note that --type=LoadBalancer will not work because we did not configure a cloud provider when bootstrapping this cluster. \ No newline at end of file +> Note that --type=LoadBalancer will not work because we did not configure a cloud provider when bootstrapping this cluster. + + +``` +kubectl describe svc nginx +``` +``` +Name: nginx +Namespace: default +Labels: run=nginx +Selector: run=nginx +Type: NodePort +IP: 10.32.0.199 +Port: 80/TCP +NodePort: 32345/TCP +Endpoints: 10.200.0.2:80,10.200.1.2:80,10.200.2.2:80 +Session Affinity: None +No events. +``` \ No newline at end of file