-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4a2e444
Showing
63 changed files
with
15,626 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
This work is licensed under the Creative Commons Attribution 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/. | ||
|
||
|
||
[![Creative Commons License](https://i.creativecommons.org/l/by/4.0/88x31.png)](http://creativecommons.org/licenses/by/4.0/) | ||
[Kubernetes 101](https://github.com/jbeda/k8s-slides) by Joe Beda is licensed under a [Creative Commons Attribution 4.0 International License](href="http://creativecommons.org/licenses/by/4.0/). | ||
|
||
--- | ||
|
||
The slide framework used is [remark.js](http://remarkjs.com/) released under an MIT License. This slide deck uses a [slightly modified version](https://github.com/jbeda/remark) that has [changes](https://github.com/gnab/remark/pull/307) to allow better background sizing. Thanks @gnab! | ||
|
||
The typefaces and images used in these presentations are often under their own licenses. I've worked to ensure that appropriate attribution shows at the bottom of each slide. | ||
|
||
The typefaces: | ||
* [Coda](https://www.google.com/fonts/specimen/Coda) | ||
Copyright (c) 2010-2012, Vernon Adams ([email protected]), with Reserved Font Names "Coda" | ||
[SIL Open Font License, 1.1](http://scripts.sil.org/OFL) | ||
* [Lora](https://www.google.com/fonts/specimen/Lora) | ||
Copyright (c) 2011-2013 by Cyreal (www.cyreal.org [email protected]). All rights reserved. | ||
[SIL Open Font License, 1.1](http://scripts.sil.org/OFL) | ||
* [Roboto](https://www.google.com/fonts/specimen/Roboto) | ||
Copyright 2011 Google Inc. All Rights Reserved. | ||
[Apache License, version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html) | ||
|
||
Thanks @majodev for writing and hosting [google-webfonts-helper](https://google-webfonts-helper.herokuapp.com/fonts) to make it easy to download these fonts for self hosting and offline usage. | ||
|
||
Images: | ||
|
||
[![](https://farm4.static.flickr.com/3463/3241311268_f84115a410_m.jpg)](https://flickr.com/photos/mavadam/3241311268 "Turntable") | ||
[flickr photo](https://flickr.com/photos/mavadam/3241311268 "Turntable") shared by [VanDammeMaarten](https://flickr.com/people/mavadam) under a [Creative Commons ( BY ) license](https://creativecommons.org/licenses/by/2.0/) | ||
|
||
[![](https://farm4.static.flickr.com/3111/3108057269_f002c3ca86_m.jpg)](https://flickr.com/photos/leroy-freakwinter/3108057269 "Captain Jack Sparrow") | ||
[flickr photo](https://flickr.com/photos/leroy-freakwinter/3108057269 "Captain Jack Sparrow") shared by [Rick Galvan](https://flickr.com/people/leroy-freakwinter) under a [Creative Commons ( BY ) license](https://creativecommons.org/licenses/by/2.0/) | ||
|
||
[![](https://farm4.static.flickr.com/3503/3894184210_47762c00a9_m.jpg)](https://flickr.com/photos/petercastleton/3894184210 "control panel") | ||
[flickr photo](https://flickr.com/photos/petercastleton/3894184210 "control panel") shared by [petercastleton](https://flickr.com/people/petercastleton) under a [Creative Commons ( BY ) license](https://creativecommons.org/licenses/by/2.0/) | ||
|
||
[![](https://farm8.static.flickr.com/7210/6952363784_d5cd8dd467_m.jpg)](https://flickr.com/photos/dvanzuijlekom/6952363784 "Magnetic-core Memory") | ||
[flickr photo](https://flickr.com/photos/dvanzuijlekom/6952363784 "Magnetic-core Memory") shared by [dvanzuijlekom](https://flickr.com/people/dvanzuijlekom) under a [Creative Commons ( BY-SA ) license](https://creativecommons.org/licenses/by-sa/2.0/) | ||
|
||
[![](https://farm4.static.flickr.com/3763/9559878695_def6aec1e3_m.jpg)](https://flickr.com/photos/mdalmuld/9559878695 "We're on the Road to Nowhere") | ||
[flickr photo](https://flickr.com/photos/mdalmuld/9559878695 "We're on the Road to Nowhere") shared by [mdalmuld](https://flickr.com/people/mdalmuld) under a [Creative Commons ( BY ) license](https://creativecommons.org/licenses/by/2.0/) | ||
|
||
[![](https://farm7.static.flickr.com/6178/6175308389_f7444d026f_m.jpg)](https://flickr.com/photos/seattlemunicipalarchives/6175308389 "Space Needle under construction, 1961") | ||
[flickr photo](https://flickr.com/photos/seattlemunicipalarchives/6175308389 "Space Needle under construction, 1961") shared by [Seattle Municipal Archives](https://flickr.com/people/seattlemunicipalarchives) under a [Creative Commons ( BY ) license](https://creativecommons.org/licenses/by/2.0/) | ||
|
||
Thanks to @cogdog for making it easy to pull out attributions from flickr pages with https://cogdog.github.io/flickr-cc-helper/. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
NAME := kubernetes-101 | ||
GS_BUCKET := slides.eightypercent.net | ||
|
||
upload-nocache: | ||
gsutil -m -h "Cache-Control:private, max-age=0" rsync -c -r . gs://$(GS_BUCKET)/$(NAME) | ||
|
||
upload: | ||
gsutil -m rsync -c -r . gs://$(GS_BUCKET)/$(NAME) | ||
|
||
copy: | ||
gsutil -m cp -r . gs://$(GS_BUCKET)/$(NAME) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# k8s-intro | ||
|
||
This is a slide deck for giving a introduction presentation for [Kubernetes](http://kubernetes.io). It is released with the hope that others will use and adapt it to spread the good word. | ||
|
||
This presentation should take 30-45 minutes to work through depending on how much elaboration you take when presenting the material. | ||
|
||
I'm happy to take pull requests with changes to the content but reserve the right to reject them if they include details or takes on things that don't reflect my own opinions. However, feel free to fork and modify as appropriate. I'll always take PRs that add to this README to pointers to derived versions. | ||
|
||
The diagrams have been created using Adobe Illustrator. I know that not everyone has access to this program and so I apologize for that. I tried to make it work with graphviz and failed. I ran out of time to figure out anything else. | ||
|
||
The presentation itself is released under a Creative Commons Attribution license. It includes images and typefaces that have their own licenses. See [LICENSE.md](LICENSE.md) for more details. | ||
|
||
[![Creative Commons License](https://i.creativecommons.org/l/by/4.0/88x31.png)](http://creativecommons.org/licenses/by/4.0/) | ||
[Kubernetes 101](https://github.com/jbeda/k8s-slides) by Joe Beda is licensed under a [Creative Commons Attribution 4.0 International License](href="http://creativecommons.org/licenses/by/4.0/). |
Oops, something went wrong.