-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
118 lines (111 loc) · 3.37 KB
/
mkdocs.yml
File metadata and controls
118 lines (111 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
site_name: DevOps Lab
site_description: A Complete Repository for DevOps Engineer - Hands-on learning with notes, labs, and mini-projects
site_author: DevOps Lab Contributors
site_url: https://imshakil.github.io/devops-lab
repo_name: devops-lab
repo_url: https://github.com/imshakil/devops-lab
edit_uri: edit/main/docs/
theme:
name: material
palette:
- scheme: default
primary: blue
accent: orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: blue
accent: orange
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- search.highlight
- search.share
- content.code.copy
icon:
repo: fontawesome/brands/github
plugins:
- search
- git-revision-date-localized:
type: date
- awesome-pages
- blog:
blog_dir: blogs
blog_toc: true
post_date_format: full
post_url_format: "{date}/{slug}"
archive_toc: true
categories_toc: true
pagination_per_page: 6
pagination_url_format: "page/{page}"
pagination_format: "$link_first $link_previous ~2~ $link_next $link_last"
pagination_keep_content: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- admonition
- pymdownx.details
- attr_list
- md_in_html
- toc:
permalink: true
nav:
- Home: README.md
- Foundations:
- Overview: foundations/README.md
- Operating Systems: foundations/os/README.md
- Source Code Management: foundations/source-code-management/README.md
- SDLC: foundations/sdlc/README.md
- Workflows: foundations/workflows/README.md
- Languages: foundations/languages/README.md
- System Design: system-design/README.md
- Infrastructure:
- Overview: infra/README.md
- Terraform: infra/terraform/README.md
- Ansible: infra/ansible/README.md
- CloudFormation: infra/cloudformation/README.md
- Pulumi: infra/pulumi/README.md
- Containerization:
- Overview: containerization/README.md
- Docker: containerization/docker/README.md
- Kubernetes: containerization/kubernetes/README.md
- CI/CD:
- Overview: ci-cd/README.md
- Jenkins: ci-cd/jenkins/README.md
- GitHub Actions: ci-cd/github-actions/README.md
- GitLab CI: ci-cd/gitlab-ci/README.md
- Azure DevOps: ci-cd/azure-devops/README.md
- Circle CI: ci-cd/circle-ci/README.md
- GitOps: ci-cd/gitops/README.md
- Observability:
- Overview: observability/README.md
- Prometheus: observability/prometheus/README.md
- Grafana: observability/grafana/README.md
- ELK Stack: observability/elk-stack/README.md
- Blog: blogs/index.md
- Interview Guides: interview-guides/README.md
- Scripting:
- Overview: scripting/README.md
- Bash: scripting/bash/README.md
- Python: scripting/python/README.md
- Golang: scripting/golang/README.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/imshakil/devops-lab
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/in/imshakil
copyright: Copyright © 2026 || DevOps Lab Contributors