├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── resource_suggestion.yml ├── SPONSORSHIP.md └── workflows │ └── sync-readme-to-index.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml └── index.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: dth99 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/resource_suggestion.yml: -------------------------------------------------------------------------------- 1 | name: "Suggest a Resource" 2 | description: "Propose a new project, lab, or resource for the list" 3 | title: "[Resource Suggestion] " 4 | labels: ["enhancement", "resource"] 5 | body: 6 | - type: input 7 | id: resource_link 8 | attributes: 9 | label: Resource Link 10 | description: "URL to the resource" 11 | placeholder: "https://..." 12 | validations: 13 | required: true 14 | - type: input 15 | id: category 16 | attributes: 17 | label: Category 18 | description: "Which category should this go under?" 19 | placeholder: "e.g. Linux, Kubernetes, Cloud..." 20 | validations: 21 | required: true 22 | - type: textarea 23 | id: description 24 | attributes: 25 | label: Short Description 26 | description: "What is this resource about?" 27 | placeholder: "A brief summary..." 28 | -------------------------------------------------------------------------------- /.github/SPONSORSHIP.md: -------------------------------------------------------------------------------- 1 | # Sponsor DevOps – Learn by Doing 2 | 3 | Your sponsorship helps us make DevOps education more practical and accessible! 4 | 5 | **How will funds be used?** 6 | - Hosting the site on a custom domain 7 | - Developing a full-stack web application with even more features 8 | - Covering infrastructure and ongoing project maintenance 9 | - Supporting the addition of new hands-on labs and resources 10 | 11 | Every contribution helps the project grow and remain free for everyone. Thank you for supporting open source DevOps learning! -------------------------------------------------------------------------------- /.github/workflows/sync-readme-to-index.yml: -------------------------------------------------------------------------------- 1 | name: Sync README to Index 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | paths: ['readme.md'] 7 | 8 | jobs: 9 | sync: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - name: Checkout code 13 | uses: actions/checkout@v4 14 | with: 15 | fetch-depth: 0 16 | 17 | - name: Copy file 18 | run: cp readme.md index.md 19 | 20 | - name: Commit changes 21 | id: commit 22 | run: | 23 | git config user.name "github-actions[bot]" 24 | git config user.email "41898282+github-actions[bot]@users.noreply.github.com" 25 | git add index.md 26 | if git diff-index --quiet HEAD; then 27 | echo "changes_made=false" >> $GITHUB_OUTPUT 28 | else 29 | git commit -m "chore: Auto-update index.md from readme.md" 30 | echo "changes_made=true" >> $GITHUB_OUTPUT 31 | fi 32 | 33 | - name: Push changes 34 | if: steps.commit.outputs.changes_made == 'true' 35 | uses: ad-m/github-push-action@v0.6.0 36 | with: 37 | github_token: ${{ secrets.GITHUB_TOKEN }} 38 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. 8 | 9 | ## Our Standards 10 | 11 | Examples of behavior that contributes to a positive environment for our community include: 12 | 13 | - Demonstrating empathy and kindness toward other people 14 | - Being respectful of differing opinions, viewpoints, and experiences 15 | - Giving and gracefully accepting constructive feedback 16 | - Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience 17 | - Focusing on what is best not just for us as individuals, but for the overall community 18 | 19 | Examples of unacceptable behavior include: 20 | 21 | - The use of sexualized language or imagery, and sexual attention or advances of any kind 22 | - Trolling, insulting or derogatory comments, and personal or political attacks 23 | - Public or private harassment 24 | - Publishing others’ private information, such as a physical or email address, without their explicit permission 25 | - Other conduct which could reasonably be considered inappropriate in a professional setting 26 | 27 | ## Enforcement Responsibilities 28 | 29 | Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. 32 | 33 | ## Scope 34 | 35 | This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. 36 | 37 | ## Enforcement 38 | 39 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at deep99.official@gmail.com All complaints will be reviewed and investigated promptly and fairly. 40 | 41 | All community leaders are obligated to respect the privacy and security of the reporter of any incident. 42 | 43 | ## Enforcement Guidelines 44 | 45 | Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: 46 | 47 | ### 1. Correction 48 | 49 | **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. 50 | 51 | **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. 52 | 53 | ### 2. Warning 54 | 55 | **Community Impact**: A violation through a single incident or series of actions. 56 | 57 | **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. 58 | 59 | ### 3. Temporary Ban 60 | 61 | **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. 62 | 63 | **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. 64 | 65 | ### 4. Permanent Ban 66 | 67 | **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. 68 | 69 | **Consequence**: A permanent ban from any sort of public interaction within the community. 70 | 71 | ## Attribution 72 | 73 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.1, available at https://www.contributor-covenant.org/version/2/1/code_of_conduct.html. 74 | 75 | Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). 76 | 77 | For answers to common questions about this code of conduct, see https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. 78 | 79 | [homepage]: https://www.contributor-covenant.org 80 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to DevOps - Learn by Doing 2 | 3 | Thanks for your interest in contributing! This project thrives on community input, and we welcome all kinds of contributions—whether it's adding new resources, improving descriptions, fixing links, or helping with the website. 4 | 5 | ## How to Contribute 6 | 7 | ### 1. Add a New Resource 8 | 9 | - **Find your resource category:** Check the [README](README.md) for existing categories. If your resource doesn't fit, suggest a new category in your PR. 10 | - **Add your link:** Insert your resource under the correct heading, keeping the list alphabetical if possible. 11 | - **Write a one-line description:** Briefly explain what the resource offers (see style guide below). 12 | 13 | ### 2. Fix, Update, or Improve 14 | 15 | - **Descriptions:** Edit for clarity, consistency, and grammar. 16 | - **Links:** Check for broken links and update or remove as needed. 17 | - **Organization:** Suggest improvements to categories, tagging, or filtering. 18 | 19 | ### 3. Work on Issues 20 | 21 | - Browse the [issue tracker](https://github.com/dth99/DevOps-Learn-By-Doing/issues) for open tasks. 22 | - Issues labeled `good first issue` or `help wanted` are great places to start. 23 | 24 | ### 4. Improve the Website 25 | 26 | - All website code is in the `/site` directory (if present). 27 | - Frontend-only! Propose UI/UX improvements, features, or bug fixes. 28 | 29 | ## Style Guide for Resources 30 | 31 | - **Descriptions:** One sentence, clear, and to the point. 32 | - **Links:** Only free, hands-on, high-quality resources. 33 | - **Examples:** 34 | - `- [SadServers](https://sadservers.com/scenarios) - Practice Linux troubleshooting with real-world server problems.` 35 | - `- [Kubernetes Goat](https://madhuakula.com/kubernetes-goat/docs/) - A playground for learning Kubernetes security by doing.` 36 | 37 | ## Pull Request Process 38 | 39 | 1. **Fork** this repository and create your branch from `main`. 40 | 2. Make your changes. 41 | 3. If you’re adding a new resource, double-check for duplicates! 42 | 4. Open a pull request (PR) with a short description of your change. 43 | 5. Be responsive to feedback or requests for changes from maintainers. 44 | 45 | ## Community Standards 46 | 47 | - Be kind, inclusive, and respectful of others. 48 | - Adhere to our [Code of Conduct](CODE_OF_CONDUCT.md). 49 | - Use clear and constructive communication. 50 | 51 | --- 52 | 53 | Thank you for making DevOps - Learn by Doing a better resource for everyone! -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 Deepak kumar 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🚀 From Linux to K8s: Learn DevOps by Building 2 | 3 | A curated, community-driven collection of **free DevOps labs, challenges, and end-to-end projects** — organized by category. Everything here is **learn by doing** ✍️ so you build real skills rather than just read theory. 4 | 5 | > 🔧 **Stop reading. Start building.** 6 | 7 | --- 8 | 9 | ## 📚 Categories 10 | 11 | * 📂 [Linux](#-linux) 12 | * 🔧 [Foundational Projects](#️-foundational-project) 13 | * ☁️ [Cloud](#️-cloud) 14 | * ☸️ [Kubernetes](#️-kubernetes) 15 | * 🧩 [Challenges & CTFs](#-challenges--ctfs) 16 | * 🛠️ [SRE](#️-sre) 17 | * 🧪 [Labs](#-labs) 18 | * 🔐 [Security](#-security) 19 | * 🎮 [Games](#-games) 20 | * ⚙️ [CI/CD](#️-cicd) 21 | * 🌿 [Git](#-git) 22 | * 👨‍💻 [Programming](#-programming) 23 | 24 | --- 25 | 26 | ## 🐧 Linux 27 | 28 | * [Linux Upskill Challenge](https://linuxupskillchallenge.org/) – Learn the skills required to sysadmin a remote Linux server from the command line 29 | * [OverTheWire](https://overthewire.org/wargames/) – Practice security concepts in the form of fun-filled games 30 | 31 | --- 32 | 33 | ## 🛠️ Foundational Projects 34 | 35 | * [DevOps Projects – Roadmap.sh](https://roadmap.sh/devops/projects) – Go from beginner to advanced through guided DevOps projects 36 | * [DevOps Foundational Project](https://prepare.sh/project/devops-foundational-project) – Build and deploy a full-stack app with real-world workflows 37 | * [100 Days of DevOps](https://github.com/100daysofdevops/100daysofdevops) – Learn DevOps with 100 blogs in 100 days 38 | * [MLOps Zoomcamp](https://github.com/DataTalksClub/mlops-zoomcamp) – A free 9-week course on productionizing ML services 39 | * [DevOps Event Driven Architecture ](https://prepare.sh/project/devops-event-driven-architecture) - Build a serverless, event-driven "like and recommend" system on AWS and Terraform. 40 | * [HiveBox](https://devopsroadmap.io/projects/hivebox/) - End-to-End Project Devops Project 41 | --- 42 | 43 | ## ☁️ Cloud 44 | 45 | * [Cloud is Free](https://cloudisfree.com/) – Learn to deploy real-world apps using only cloud Free Tiers 46 | * [The Cloud Resume Challenge](https://cloudresumechallenge.dev/docs/the-challenge/) – Cloud learning through a resume project 47 | * [Learn to Cloud](https://learntocloud.guide/) – Understand the fundamentals of cloud computing 48 | * [AWS Workshops](https://workshops.aws/) – Practice hands-on AWS labs and projects 49 | 50 | --- 51 | 52 | ## ☸️ Kubernetes 53 | 54 | * [Kubernetes The Hard Way](https://github.com/kelseyhightower/kubernetes-the-hard-way) – Learn to bootstrap Kubernetes manually 55 | * [Kubernetes Goat](https://madhuakula.com/kubernetes-goat/docs/) – A playground for Kubernetes security learning 56 | 57 | --- 58 | 59 | ## 🧩 Challenges & CTFs 60 | 61 | * [SadServers](https://sadservers.com/scenarios) – Like LeetCode for DevOps/Linux troubleshooting 62 | * [iximiuz Labs](https://labs.iximiuz.com/challenges) – Hone your DevOps skills with focused hands-on problems 63 | * [Linux CTFs](https://github.com/learntocloud/linux-ctfs) – Command-line based Capture The Flag challenges 64 | * [Terraform Tutorials](https://developer.hashicorp.com/terraform/tutorials) – Learn Terraform across major cloud providers 65 | 66 | --- 67 | 68 | ## 🛠️ SRE 69 | 70 | * [SRE Bootcamp](https://one2n.io/sre-bootcamp/sre-bootcamp-exercises) – Learn real-world SRE through hands-on challenges and production-grade apps 71 | 72 | --- 73 | 74 | ## 🧪 Labs 75 | 76 | * [KodeKloud Labs](https://kodekloud.com/free-labs) – Free labs on Docker, Kubernetes, Ansible, etc. 77 | * [Prepare.sh Labs](https://prepare.sh/projects/devops) – Real-world DevOps labs and projects 78 | * [Labex](https://labex.io/) - Learn Linux, DevOps & Cybersecurity with Hands-on Labs 79 | * [Killercoda](https://killercoda.com/) - Learn DevOps Linux Kubernetes CKS CKA CKAD Git Linux Programming. 80 | * [AZ-104 Microsoft Labs](https://microsoftlearning.github.io/AZ-104-MicrosoftAzureAdministrator/) – Practice labs for Azure Administrator certification 81 | * [DevOps Daily](https://devops-daily.com/exercises) - Master DevOps skills through hands-on practice with real-world scenarios 82 | --- 83 | 84 | ## 🔐 Security 85 | 86 | * [OWASP Juice Shop](https://owasp.org/www-project-juice-shop/) – A vulnerable web app to learn about web security and OWASP Top 10 87 | * [OWASP Kubernetes Top 10](https://madhuakula.com/kubernetes-goat/docs/owasp-kubernetes-top-ten/) – Understand Kubernetes-specific security vulnerabilities 88 | 89 | --- 90 | 91 | ## 🎮 Games 92 | * [ohmygit](https://ohmygit.org/) – An open source game about learning Git! 93 | * [DevOps Dream](https://devops.games/) – A game for modern tech leaders to improve software delivery and organisational performance, based on real industry insights. 94 | 95 | --- 96 | 97 | ## ⚙️ CI/CD 98 | 99 | * [Jenkins CI/CD](https://www.jenkins.io/doc/tutorials/build-a-java-app-with-maven/) – Build a Java app using Jenkins pipelines 100 | 101 | --- 102 | 103 | ## 🌿 Git 104 | 105 | * [Learn Git Branching](https://learngitbranching.js.org/) – Interactive visual Git tutorial for mastering branching concepts 106 | 107 | --- 108 | 109 | ## 👨‍💻 Programming 110 | 111 | * [Go Bootcamp](https://one2n.io/go-bootcamp) – Learn Go through hands-on exercises and real-world scenarios 112 | 113 | --- 114 | 115 | ## 🤝 Contributing 116 | 117 | * Found a great resource? [Open an issue](https://github.com/dth99/devops-learn-by-doing/issues/new) or submit a pull request! 118 | * See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines. 119 | 120 | ## 🙏 Sponsor This Project 121 | 122 | If you find **DevOps — Learn by Doing** helpful, please consider sponsoring to support ongoing maintenance and new features! we are planning to making a full stack website the more features and labs 123 | 124 | 125 | [![Sponsor on GitHub](https://img.shields.io/badge/Sponsor-❤️-brightgreen?logo=github-sponsors&style=for-the-badge)](https://github.com/sponsors/dth99) 126 | --- 127 | ![Visitor Count](https://visitor-badge.laobi.icu/badge?page_id=dth99.devops-learn-by-doing) 128 | 129 | 130 | 131 | ## Star History 132 | 133 | [![Star History Chart](https://api.star-history.com/svg?repos=dth99/DevOps-Learn-By-Doing&type=Date)](https://www.star-history.com/#dth99/DevOps-Learn-By-Doing&Date) 134 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman 2 | title: From Linux to K8s - Learn DevOps by Building 3 | description: A curated, community-driven collection of free DevOps labs, challenges, and end-to-end projects — organized by category. Learn by doing, from Linux to Kubernetes. -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | # 🚀 From Linux to K8s: Learn DevOps by Building 2 | 3 | A curated, community-driven collection of **free DevOps labs, challenges, and end-to-end projects** — organized by category. Everything here is **learn by doing** ✍️ so you build real skills rather than just read theory. 4 | 5 | > 🔧 **Stop reading. Start building.** 6 | 7 | --- 8 | 9 | ## 📚 Categories 10 | 11 | * 📂 [Linux](#-linux) 12 | * 🔧 [Foundational Projects](#️-foundational-project) 13 | * ☁️ [Cloud](#️-cloud) 14 | * ☸️ [Kubernetes](#️-kubernetes) 15 | * 🧩 [Challenges & CTFs](#-challenges--ctfs) 16 | * 🛠️ [SRE](#️-sre) 17 | * 🧪 [Labs](#-labs) 18 | * 🔐 [Security](#-security) 19 | * 🎮 [Games](#-games) 20 | * ⚙️ [CI/CD](#️-cicd) 21 | * 🌿 [Git](#-git) 22 | * 👨‍💻 [Programming](#-programming) 23 | 24 | --- 25 | 26 | ## 🐧 Linux 27 | 28 | * [Linux Upskill Challenge](https://linuxupskillchallenge.org/) – Learn the skills required to sysadmin a remote Linux server from the command line 29 | * [OverTheWire](https://overthewire.org/wargames/) – Practice security concepts in the form of fun-filled games 30 | 31 | --- 32 | 33 | ## 🛠️ Foundational Projects 34 | 35 | * [DevOps Projects – Roadmap.sh](https://roadmap.sh/devops/projects) – Go from beginner to advanced through guided DevOps projects 36 | * [DevOps Foundational Project](https://prepare.sh/project/devops-foundational-project) – Build and deploy a full-stack app with real-world workflows 37 | * [100 Days of DevOps](https://github.com/100daysofdevops/100daysofdevops) – Learn DevOps with 100 blogs in 100 days 38 | * [MLOps Zoomcamp](https://github.com/DataTalksClub/mlops-zoomcamp) – A free 9-week course on productionizing ML services 39 | * [DevOps Event Driven Architecture ](https://prepare.sh/project/devops-event-driven-architecture) - Build a serverless, event-driven "like and recommend" system on AWS and Terraform. 40 | * [HiveBox](https://devopsroadmap.io/projects/hivebox/) - End-to-End Project Devops Project 41 | --- 42 | 43 | ## ☁️ Cloud 44 | 45 | * [Cloud is Free](https://cloudisfree.com/) – Learn to deploy real-world apps using only cloud Free Tiers 46 | * [The Cloud Resume Challenge](https://cloudresumechallenge.dev/docs/the-challenge/) – Cloud learning through a resume project 47 | * [Learn to Cloud](https://learntocloud.guide/) – Understand the fundamentals of cloud computing 48 | * [AWS Workshops](https://workshops.aws/) – Practice hands-on AWS labs and projects 49 | 50 | --- 51 | 52 | ## ☸️ Kubernetes 53 | 54 | * [Kubernetes The Hard Way](https://github.com/kelseyhightower/kubernetes-the-hard-way) – Learn to bootstrap Kubernetes manually 55 | * [Kubernetes Goat](https://madhuakula.com/kubernetes-goat/docs/) – A playground for Kubernetes security learning 56 | 57 | --- 58 | 59 | ## 🧩 Challenges & CTFs 60 | 61 | * [SadServers](https://sadservers.com/scenarios) – Like LeetCode for DevOps/Linux troubleshooting 62 | * [iximiuz Labs](https://labs.iximiuz.com/challenges) – Hone your DevOps skills with focused hands-on problems 63 | * [Linux CTFs](https://github.com/learntocloud/linux-ctfs) – Command-line based Capture The Flag challenges 64 | * [Terraform Tutorials](https://developer.hashicorp.com/terraform/tutorials) – Learn Terraform across major cloud providers 65 | 66 | --- 67 | 68 | ## 🛠️ SRE 69 | 70 | * [SRE Bootcamp](https://one2n.io/sre-bootcamp/sre-bootcamp-exercises) – Learn real-world SRE through hands-on challenges and production-grade apps 71 | 72 | --- 73 | 74 | ## 🧪 Labs 75 | 76 | * [KodeKloud Labs](https://kodekloud.com/free-labs) – Free labs on Docker, Kubernetes, Ansible, etc. 77 | * [Prepare.sh Labs](https://prepare.sh/projects/devops) – Real-world DevOps labs and projects 78 | * [Labex](https://labex.io/) - Learn Linux, DevOps & Cybersecurity with Hands-on Labs 79 | * [Killercoda](https://killercoda.com/) - Learn DevOps Linux Kubernetes CKS CKA CKAD Git Linux Programming. 80 | * [AZ-104 Microsoft Labs](https://microsoftlearning.github.io/AZ-104-MicrosoftAzureAdministrator/) – Practice labs for Azure Administrator certification 81 | * [DevOps Daily](https://devops-daily.com/exercises) - Master DevOps skills through hands-on practice with real-world scenarios 82 | --- 83 | 84 | ## 🔐 Security 85 | 86 | * [OWASP Juice Shop](https://owasp.org/www-project-juice-shop/) – A vulnerable web app to learn about web security and OWASP Top 10 87 | * [OWASP Kubernetes Top 10](https://madhuakula.com/kubernetes-goat/docs/owasp-kubernetes-top-ten/) – Understand Kubernetes-specific security vulnerabilities 88 | 89 | --- 90 | 91 | ## 🎮 Games 92 | * [ohmygit](https://ohmygit.org/) – An open source game about learning Git! 93 | * [DevOps Dream](https://devops.games/) – A game for modern tech leaders to improve software delivery and organisational performance, based on real industry insights. 94 | 95 | --- 96 | 97 | ## ⚙️ CI/CD 98 | 99 | * [Jenkins CI/CD](https://www.jenkins.io/doc/tutorials/build-a-java-app-with-maven/) – Build a Java app using Jenkins pipelines 100 | 101 | --- 102 | 103 | ## 🌿 Git 104 | 105 | * [Learn Git Branching](https://learngitbranching.js.org/) – Interactive visual Git tutorial for mastering branching concepts 106 | 107 | --- 108 | 109 | ## 👨‍💻 Programming 110 | 111 | * [Go Bootcamp](https://one2n.io/go-bootcamp) – Learn Go through hands-on exercises and real-world scenarios 112 | 113 | --- 114 | 115 | ## 🤝 Contributing 116 | 117 | * Found a great resource? [Open an issue](https://github.com/dth99/devops-learn-by-doing/issues/new) or submit a pull request! 118 | * See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines. 119 | 120 | ## 🙏 Sponsor This Project 121 | 122 | If you find **DevOps — Learn by Doing** helpful, please consider sponsoring to support ongoing maintenance and new features! we are planning to making a full stack website the more features and labs 123 | 124 | 125 | [![Sponsor on GitHub](https://img.shields.io/badge/Sponsor-❤️-brightgreen?logo=github-sponsors&style=for-the-badge)](https://github.com/sponsors/dth99) 126 | --- 127 | ![Visitor Count](https://visitor-badge.laobi.icu/badge?page_id=dth99.devops-learn-by-doing) 128 | 129 | 130 | 131 | ## Star History 132 | 133 | [![Star History Chart](https://api.star-history.com/svg?repos=dth99/DevOps-Learn-By-Doing&type=Date)](https://www.star-history.com/#dth99/DevOps-Learn-By-Doing&Date) 134 | --------------------------------------------------------------------------------