Update README.md

This commit is contained in:
Mia von Steinkirch 2019-10-20 22:07:55 -07:00 committed by GitHub
parent bb96ee67a6
commit 173508aaa4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,5 @@
# Resources for Kubernetes # Resources for Kubernetes
## Quick overview
* A Kubernetes cluster consists of **Nodes** (simialr to servers) * 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. * 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. * 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 ## Tools
@ -49,13 +55,11 @@ Get more information about a pod:
$ kubectl describe pod --namespace=<ns-name> <pod name> $ kubectl describe pod --namespace=<ns-name> <pod name>
``` ```
### 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).