├── .github └── FUNDING.yml ├── .gitignore ├── .markdownlint.jsonc ├── LICENSE └── CONTRIBUTING.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [piouson] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | *.* 3 | !*.md 4 | !.markdownlint.jsonc 5 | -------------------------------------------------------------------------------- /.markdownlint.jsonc: -------------------------------------------------------------------------------- 1 | { 2 | "no-inline-html": false, 3 | "line-length": false, 4 | "list-marker-space": false, 5 | "blanks-around-lists": false, 6 | "blanks-around-fences": false, 7 | "no-blanks-blockquote": false 8 | } 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | ISC License 2 | 3 | Copyright (c) 2022 Piouson 4 | 5 | Permission to use, copy, modify, and/or distribute this software for any 6 | purpose with or without fee is hereby granted, provided that the above 7 | copyright notice and this permission notice appear in all copies. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 10 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 11 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 12 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 13 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 14 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 15 | PERFORMANCE OF THIS SOFTWARE. 16 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to Kubernetes Bootcamp 2 | 3 | Thank you for taking the time to contribute! ❤️ 4 | 5 | > If you like this project, but just don't have time to contribute, that's fine. There are other easy ways to support the project and show your appreciation: 6 | > - Star the project 7 | > - Tweet about it 8 | > - Reference this project in your own work 9 | > - Mention this project at local meetups and to your family/friends/colleagues 10 | > 11 | > buy me coffee to sponsor this project 12 | 13 | ## I Have a Question 14 | 15 | > If you want to ask a question or an idea, please [start a new discussion](https://github.com/piouson/kubernetes-bootcamp/discussions) and we'll reply as soon as possible. 16 | 17 | ## I Want To Contribute 18 | 19 | > ### Legal Notice 20 | > 21 | > When contributing to this project, you must agree that you have authored 100% of the content, that you have the necessary rights to the content and that the content you contribute may be provided under the project license. 22 | 23 | ### Suggesting Improvements and Fixes 24 | 25 | All types of contributions are encouraged and valued. 🎉 26 | 27 | Please [start a new discussion](https://github.com/piouson/kubernetes-bootcamp/discussions) about your idea so that we can work together to incorporate them, or [create a pull request](https://github.com/piouson/kubernetes-bootcamp/pulls) if you have a complete solution. 28 | 29 | Contributions may include: 30 | 31 | - discuss challenges you faced using this work 32 | - fixing typos or incorrect explanations 33 | - clarifying reference sources 34 | - linking labs to official documentation tutorials 35 | - adding new labs/tasks/sections 36 | - improving existing labs/tasks/sections 37 | - etc 38 | --------------------------------------------------------------------------------