From 3f7675be04becc07bfda7e302871bf64f678a58a Mon Sep 17 00:00:00 2001 From: Jerome Petazzoni Date: Tue, 30 Oct 2018 17:24:27 -0500 Subject: [PATCH] Add links to what's next section For each concept that is present in the full-length tutorial, I added a link to the corresponding chapter in the final section, so that people who liked the short version can get similarly presented info from the longer version. --- slides/k8s/whatsnext.md | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/slides/k8s/whatsnext.md b/slides/k8s/whatsnext.md index 76d4d9ab..0b7d39be 100644 --- a/slides/k8s/whatsnext.md +++ b/slides/k8s/whatsnext.md @@ -77,6 +77,18 @@ And *then* it is time to look at orchestration! --- +## Relevant sections + +- [Namespaces](kube-selfpaced.yml.html#toc-namespaces) + +- [Network Policies](kube-selfpaced.yml.html#toc-network-policies) + +- [Role-Based Access Control](kube-selfpaced.yml.html#toc-authentication-and-authorization) + + (covers permissions model, user and service accounts management ...) + +--- + ## Stateful services (databases etc.) - As a first step, it is wiser to keep stateful services *outside* of the cluster @@ -113,6 +125,13 @@ And *then* it is time to look at orchestration! - what do we gain by deploying this stateful service on Kubernetes? +- Relevant sections: + [Volumes](kube-selfpaced.yml.html#toc-volumes) + | + [Stateful Sets](kube-selfpaced.yml.html#toc-stateful-sets) + | + [Persistent Volumes](kube-selfpaced.yml.html#toc-highly-available-persistent-volumes) + --- ## HTTP traffic handling @@ -130,7 +149,7 @@ And *then* it is time to look at orchestration! - URI mapping - and much more! -- Check out e.g. [Træfik](https://docs.traefik.io/user-guide/kubernetes/) +- [This section](kube-selfpaced.yml.html#toc-exposing-http-services-with-ingress-resources) shows how to expose multiple HTTP apps using [Træfik](https://docs.traefik.io/user-guide/kubernetes/) --- @@ -146,6 +165,8 @@ And *then* it is time to look at orchestration! (e.g. with an agent bind-mounting the log directory) +- [This section](kube-selfpaced.yml.html#toc-centralized-logging) shows how to do that with [Fluentd](https://docs.fluentd.org/v0.12/articles/kubernetes-fluentd) and the EFK stack + --- ## Metrics @@ -180,6 +201,8 @@ And *then* it is time to look at orchestration! (It's the container equivalent of the password on a post-it note on your screen) +- [This section](kube-selfpaced.yml.html#toc-managing-configuration) shows how to manage app config with config maps (among others) + --- ## Managing stack deployments