Skip to content

Commit

Permalink
This is the first lesson from the Kubernetes webinar series
Browse files Browse the repository at this point in the history
  • Loading branch information
ernesen committed Dec 10, 2017
1 parent 5cf26c3 commit 441a860
Show file tree
Hide file tree
Showing 11 changed files with 411 additions and 0 deletions.
14 changes: 14 additions & 0 deletions 01-lesson/demo.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Deploy Nginx container
kubectl run my-web --image=nginx --port=80

# Expose Nginx container
kubectl expose deployment my-web --target-port=80 --type=NodePort

# Get the node IP for minikube
minikube ip

# Check the NodePort
kubectl describe svc my-web

# Access Ngnix
PORT=$(kubectl get svc my-web -o go-template='{{(index .spec.ports 0).nodePort}}')
394 changes: 394 additions & 0 deletions 01-lesson/getting_started.md

Large diffs are not rendered by default.

Binary file added 01-lesson/images/image-01-01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 01-lesson/images/image-01-02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 01-lesson/images/image-01-03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 01-lesson/images/image-01-04.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 01-lesson/images/image-01-05.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 01-lesson/images/image-01-06.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 01-lesson/images/image-01-07.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 01-lesson/images/image-01-08.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# kubernetes
Learning Kubernetes from Kubernetes Webinar Series - hosted by Janakiram & Associates

List of lessons:
[01 - Kubernetes Webinar Series - Getting Started with Kubernetes](./01-lesson/getting_started.md)

0 comments on commit 441a860

Please sign in to comment.