From 173508aaa4c8f6b0000a2424a66f83d05ad5581a Mon Sep 17 00:00:00 2001 From: Mia von Steinkirch Date: Sun, 20 Oct 2019 22:07:55 -0700 Subject: [PATCH] Update README.md --- README.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 0479e14..9e84d69 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # Resources for Kubernetes -## Quick overview - * A Kubernetes cluster consists of **Nodes** (simialr to servers) * Nodes run **Pods**, which are collections of Docker containers. Containers in a Pod share the same network. @@ -13,6 +11,14 @@ * Kubernetes provides the **Secret** object for managing sensitive information such as passwords, API keys, and other credentials. +------------- + +## In this Repository + +* [Spin up a node server example](https://github.com/bt3gl/Learning_Kubernetes/tree/master/node-server-example). +* [Use kustomize to organize and combine YAML templates of your services and deployments](https://github.com/bt3gl/Learning_Kubernetes/tree/master/kustomize-example). + + -------------- ## Tools @@ -49,13 +55,11 @@ Get more information about a pod: $ kubectl describe pod --namespace= ``` -### AWS Tools -* [AWS IAM authenticator](https://github.com/kubernetes-sigs/aws-iam-authenticator). +-------- + +## Learning -### Learning Examples +* [Google's K8s 101](https://techdevguide.withgoogle.com/paths/cloud/sequence-2/kubernetes-101-pods-nodes-containers-and-clusters/#!). - -* [Spin up a node server example](https://github.com/bt3gl/Learning_Kubernetes/tree/master/node-server-example). -* [Use kustomize to organize and combine YAML templates of your services and deployments](https://github.com/bt3gl/Learning_Kubernetes/tree/master/kustomize-example).