From dee077194f4e8d4983aa9e88b188cbed70c3477b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my-Christophe=20Schermesser?= Date: Tue, 14 May 2019 15:47:24 +0200 Subject: [PATCH] feat: add some links for further readings --- 05-pods/README.md | 6 ++++++ 06-label-annotation/README.md | 4 ++++ 09-cronjob/README.md | 4 ++++ 10-secrets/README.md | 4 ++++ 12-resources/README.md | 1 + 14-pdb/README.md | 2 ++ 6 files changed, 21 insertions(+) diff --git a/05-pods/README.md b/05-pods/README.md index 65c384f..f9ab389 100644 --- a/05-pods/README.md +++ b/05-pods/README.md @@ -119,3 +119,9 @@ kubectl delete pod --all ## Answers For 2. Nop, the pod is only visible from the inside of the cluster + +## Links + +* https://kubernetes.io/docs/concepts/workloads/pods/pod-overview/ +* https://kubernetes.io/docs/concepts/workloads/pods/pod/ +* https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/ diff --git a/06-label-annotation/README.md b/06-label-annotation/README.md index 7ed398d..869a716 100644 --- a/06-label-annotation/README.md +++ b/06-label-annotation/README.md @@ -56,3 +56,7 @@ Nothing to see here. ```bash kubectl delete pod --all ``` + +## Links + +* https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ diff --git a/09-cronjob/README.md b/09-cronjob/README.md index 2677a09..b98e026 100644 --- a/09-cronjob/README.md +++ b/09-cronjob/README.md @@ -80,3 +80,7 @@ If you have a long running background process - like a consumer of a queue - you ```bash kubectl delete deployment,rs,service,cronjob,pod --all ``` + +## Links + +* https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/ diff --git a/10-secrets/README.md b/10-secrets/README.md index 1481100..ac0f4ef 100644 --- a/10-secrets/README.md +++ b/10-secrets/README.md @@ -81,3 +81,7 @@ Nothing to see here. ```bash kubectl delete service,deployment,pod,secrets --all ``` + +## Links + +* https://kubernetes.io/docs/concepts/configuration/secret/ diff --git a/12-resources/README.md b/12-resources/README.md index eb7c0e8..a436fa7 100644 --- a/12-resources/README.md +++ b/12-resources/README.md @@ -70,3 +70,4 @@ kubectl delete service,deployment,pod --all ## Links * https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container +* https://medium.com/@betz.mark/understanding-resource-limits-in-kubernetes-cpu-time-9eff74d3161b diff --git a/14-pdb/README.md b/14-pdb/README.md index 64d6b04..fafe78f 100644 --- a/14-pdb/README.md +++ b/14-pdb/README.md @@ -68,3 +68,5 @@ kubectl delete service,deployment,pod --all ``` ## Links + +* https://kubernetes.io/docs/tasks/run-application/configure-pdb/