mirror of
https://github.com/kelseyhightower/kubernetes-the-hard-way.git
synced 2025-07-27 22:23:54 +03:00
update docs
This commit is contained in:
25
docs/smoke-test.md
Normal file
25
docs/smoke-test.md
Normal file
@@ -0,0 +1,25 @@
|
||||
# Smoke Test
|
||||
|
||||
This lab walks you through a quick smoke test to make sure things are working.
|
||||
|
||||
## Test
|
||||
|
||||
```
|
||||
```
|
||||
|
||||
```
|
||||
kubectl run nginx --image=nginx --port=80 --replicas=3
|
||||
```
|
||||
|
||||
```
|
||||
deployment "nginx" created
|
||||
```
|
||||
|
||||
```
|
||||
kubectl get pods -o wide
|
||||
```
|
||||
NAME READY STATUS RESTARTS AGE IP NODE
|
||||
nginx-2032906785-ms8hw 1/1 Running 0 21s 10.200.2.2 worker2
|
||||
nginx-2032906785-sokxz 1/1 Running 0 21s 10.200.1.2 worker1
|
||||
nginx-2032906785-u8rzc 1/1 Running 0 21s 10.200.0.2 worker0
|
||||
```
|
Reference in New Issue
Block a user