đź“Ś This README is bilingual. For the Czech version (WIP), scroll down or click here.
⏳ The English version is TBD and will be added soon.
This repository presents a DevSecOps case study exploring key concepts and practical applications in areas such as containerization, networking, Kubernetes, GitOps, and infrastructure automation.
âš This repository includes repository-specific Git configuration files (git-config
) that reference a specific GitHub account and email address. Before using them, update the values to match your own details.
- Repository Structure
- Case Study Chapters
- Setting Up the Repository
- License
- Czech Version / Česká verze
devops-case-study/
├── .gitattributes
├── .gitignore
├── git-config
├── setup-hooks.sh
├── hooks/
│ └── post-checkout
├── README.md
├── en/
│ ├── README.md
│ ├── gitops.md
│ ├── kubernetes.md
│ ├── monitoring.md
│ ├── networking.md
│ ├── security.md
│ ├── sources.md
To ensure the repository-specific Git configuration is applied automatically, follow these steps:
git clone https://github.com/ILXNAH/devops-case-study.git
cd devops-case-study
Since Git does not track the .git/hooks/
directory, you need to run the following setup script to install the required Git hooks:
./setup-hooks.sh
This script will:
- Copy the
post-checkout
hook from thehooks/
directory to.git/hooks/
. - Ensure the script is executable.
- Apply the repository-specific Git configuration automatically.
Git hooks are scripts that run automatically at specific points in the Git workflow.
In this repository, thepost-checkout
hook ensures that after switching branches or checking out the repository, the correct Git configuration is applied.
âš If you use this repository, make sure to update git-config
with your own email and GitHub username before committing any changes.
To confirm that the Git configuration was successfully applied, run:
git config --local --list
You should see a line similar to:
include.path=./git-config
This project is licensed under the MIT License.
Tento repozitář pĹ™edstavuje pĹ™Ăpadovou studii DevSecOps, která zkoumá klĂÄŤovĂ© koncepty a praktickĂ© aplikace v oblastech jako je kontejnerizace, sĂtÄ›, Kubernetes, GitOps a automatizace infrastruktury.
⚠Tento repozitář obsahuje specifické Git konfiguračnà soubory (git-config
), kterĂ© odkazujĂ na konkrĂ©tnĂ GitHub účet a e-mailovou adresu. PĹ™ed jejich pouĹľitĂm si hodnoty upravte podle vlastnĂch ĂşdajĹŻ.
devops-case-study/
├── .gitattributes
├── .gitignore
├── git-config
├── setup-hooks.sh
├── hooks/
│ └── post-checkout
├── README.md
├── cz/
│ ├── README.md
│ ├── bezpečnost.md
│ ├── gitops-cz.md
│ ├── kubernetes-cz.md
│ ├── monitoring-cz.md
│ ├── sĂĹĄovánĂ.md
│ ├── zdroje.md
Aby byla automaticky aplikována specifická Git konfigurace pro tento repozitář, postupujte následovně:
git clone https://github.com/ILXNAH/devops-case-study.git
cd devops-case-study
Protože Git standardně nesleduje adresář .git/hooks/
, je nutnĂ© spustit následujĂcĂ skript pro instalaci poĹľadovanĂ˝ch Git hookĹŻ:
./setup-hooks.sh
Tento skript:
- ZkopĂruje hook
post-checkout
ze sloĹľkyhooks/
do.git/hooks/
. - UjistĂ se, Ĺľe je skript spustitelnĂ˝.
- Automaticky aplikuje specifickou konfiguraci Git repozitáře.
Git hooky jsou skripty, kterĂ© se automaticky spouštÄ›jĂ v urÄŤitĂ˝ch fázĂch Git workflow.
V tomto repozitářipost-checkout
hook zajišťuje, že po přepnutà větve nebo klonovánà repozitáře bude správně nastavena Git konfigurace.
âš Pokud pouĹľĂváte tento repozitář, ujistÄ›te se, Ĺľe jste v souboru git-config
aktualizovali Ăşdaje s vašĂm vlastnĂm e-mailem a GitHub uĹľivatelskĂ˝m jmĂ©nem pĹ™ed odeslánĂm zmÄ›n. Pro ověřenĂ, Ĺľe byla Git konfigurace ĂşspěšnÄ› aplikována, spusĹĄte:
git config --local --list
Měl by se zobrazit řádek podobný:
include.path=./git-config
Tento projekt je licencován pod MIT licencĂ.