From dd4e262d22073ed810b13f04b81aaed445b0eb35 Mon Sep 17 00:00:00 2001 From: Jerome Petazzoni Date: Mon, 17 Jun 2019 06:05:29 -0500 Subject: [PATCH] Break deck in 3 parts --- slides/_redirects | 2 +- slides/{alfun.yml => alfun-1.yml} | 59 +------------------------ slides/alfun-2.yml | 72 +++++++++++++++++++++++++++++++ slides/alfun-3.yml | 22 ++++++++++ slides/alfun.html | 5 +++ slides/shared/title.md | 6 --- 6 files changed, 101 insertions(+), 65 deletions(-) rename slides/{alfun.yml => alfun-1.yml} (57%) create mode 100644 slides/alfun-2.yml create mode 100644 slides/alfun-3.yml create mode 100644 slides/alfun.html diff --git a/slides/_redirects b/slides/_redirects index 00071fd5..5955ddc4 100644 --- a/slides/_redirects +++ b/slides/_redirects @@ -2,4 +2,4 @@ #/ /kube-halfday.yml.html 200 #/ /kube-fullday.yml.html 200 #/ /kube-twodays.yml.html 200 -/ /alfun.yml.html 200 +/ /alfun.html 200 diff --git a/slides/alfun.yml b/slides/alfun-1.yml similarity index 57% rename from slides/alfun.yml rename to slides/alfun-1.yml index 2e9ce58c..99d1c3dc 100644 --- a/slides/alfun.yml +++ b/slides/alfun-1.yml @@ -2,6 +2,7 @@ title: | Containers, Docker, Kubernetes + (Partie 1) #chat: "[Slack](https://dockercommunity.slack.com/messages/C7GKACWDV)" chat: "[Gitter](https://gitter.im/jpetazzo/workshop-yyyymmdd-city)" @@ -59,61 +60,3 @@ chapters: - shared/declarative.md - k8s/declarative.md - k8s/kubenet.md -# DAY 3 -- - shared/prereqs.md - - shared/connecting.md - - k8s/versions-k8s.md - - shared/sampleapp.md - - shared/composedown.md - - k8s/kubectlget.md - - k8s/kubectlrun.md - - k8s/deploymentslideshow.md -- - k8s/kubectlexpose.md - - k8s/shippingimages.md - - k8s/buildshiprun-dockerhub.md - - k8s/ourapponkube.md - - k8s/scalingdockercoins.md - - shared/hastyconclusions.md - - k8s/daemonset.md -- - k8s/namespaces.md - - | - # Exercise — from Compose to Kubernetes - - Let's run the wordsmith app on Kubernetes! - - The code is at: https://github.com/jpetazzo/wordsmith - - k8s/kustomize.md - - k8s/helm.md - #- k8s/create-chart.md - - k8s/rollout.md -- - k8s/healthchecks.md - - k8s/kubectlproxy.md - - k8s/localkubeconfig.md - - k8s/accessinternal.md - - k8s/dashboard.md - - k8s/setup-k8s.md -# DAY 4 -- - k8s/volumes.md - - k8s/configuration.md - - k8s/logs-cli.md - - k8s/logs-centralized.md - - k8s/prometheus.md -- - k8s/authn-authz.md - - k8s/netpol.md - - k8s/podsecuritypolicy.md -- - k8s/ingress.md - - k8s/statefulsets.md - - k8s/local-persistent-volumes.md - #- k8s/extending-api.md -- - k8s/resource-limits.md - - k8s/metrics-server.md - - k8s/cluster-sizing.md - - k8s/horizontal-pod-autoscaler.md -- - k8s/whatsnext.md - - k8s/links.md - - shared/thankyou.md -- - | - # (Extra material) - - containers/Namespaces_Cgroups.md - - containers/Copy_On_Write.md - diff --git a/slides/alfun-2.yml b/slides/alfun-2.yml new file mode 100644 index 00000000..e1caaeb7 --- /dev/null +++ b/slides/alfun-2.yml @@ -0,0 +1,72 @@ +title: | + Containers, + Docker, + Kubernetes + (Partie 2) + +#chat: "[Slack](https://dockercommunity.slack.com/messages/C7GKACWDV)" +chat: "[Gitter](https://gitter.im/jpetazzo/workshop-yyyymmdd-city)" + +gitrepo: github.com/jpetazzo/container.training + +slides: http://alfun-2019-06.container.training/ + +exclude: +- self-paced + +chapters: +- shared/title.md +- shared/toc.md +# DAY 3 +- - shared/prereqs.md + - shared/connecting.md + - k8s/versions-k8s.md + - shared/sampleapp.md + - shared/composedown.md + - k8s/kubectlget.md + - k8s/kubectlrun.md + - k8s/deploymentslideshow.md +- - k8s/kubectlexpose.md + - k8s/shippingimages.md + - k8s/buildshiprun-dockerhub.md + - k8s/ourapponkube.md + - k8s/scalingdockercoins.md + - shared/hastyconclusions.md + - k8s/daemonset.md +- - k8s/namespaces.md + - | + # Exercise — from Compose to Kubernetes + + Let's run the wordsmith app on Kubernetes! + + The code is at: https://github.com/jpetazzo/wordsmith + - k8s/kustomize.md + - k8s/helm.md + #- k8s/create-chart.md + - k8s/rollout.md +- - k8s/healthchecks.md + - k8s/kubectlproxy.md + - k8s/localkubeconfig.md + - k8s/accessinternal.md + - k8s/dashboard.md + - k8s/setup-k8s.md +# DAY 4 +- - k8s/volumes.md + - k8s/configuration.md + - k8s/logs-cli.md + - k8s/logs-centralized.md + - k8s/prometheus.md +- - k8s/authn-authz.md + - k8s/netpol.md + - k8s/podsecuritypolicy.md +- - k8s/ingress.md + - k8s/statefulsets.md + - k8s/local-persistent-volumes.md + #- k8s/extending-api.md +- - k8s/resource-limits.md + - k8s/metrics-server.md + - k8s/cluster-sizing.md + - k8s/horizontal-pod-autoscaler.md +- - k8s/whatsnext.md + - k8s/links.md + - shared/thankyou.md diff --git a/slides/alfun-3.yml b/slides/alfun-3.yml new file mode 100644 index 00000000..227033e2 --- /dev/null +++ b/slides/alfun-3.yml @@ -0,0 +1,22 @@ +title: | + Containers, + Docker, + Kubernetes + (Extras) + +#chat: "[Slack](https://dockercommunity.slack.com/messages/C7GKACWDV)" +chat: "[Gitter](https://gitter.im/jpetazzo/workshop-yyyymmdd-city)" + +gitrepo: github.com/jpetazzo/container.training + +slides: http://alfun-2019-06.container.training/ + +exclude: +- self-paced + +chapters: +- shared/title.md +- shared/toc.md +- - containers/Namespaces_Cgroups.md + - containers/Copy_On_Write.md + diff --git a/slides/alfun.html b/slides/alfun.html new file mode 100644 index 00000000..bfebb441 --- /dev/null +++ b/slides/alfun.html @@ -0,0 +1,5 @@ +

Lundi / Mardi

+

Jeudi / Vendredi

+

Extra slides (container internals)

+ + diff --git a/slides/shared/title.md b/slides/shared/title.md index 4ab52435..467a0aa7 100644 --- a/slides/shared/title.md +++ b/slides/shared/title.md @@ -11,11 +11,5 @@ class: title, in-person @@TITLE@@

.footnote[ -**Be kind to the WiFi!**
- -*Don't use your hotspot.*
-*Don't stream videos or download big files during the workshop[.](https://www.youtube.com/watch?v=h16zyxiwDLY)*
-*Thank you!* - **Slides: @@SLIDES@@** ]