-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
157 lines (144 loc) · 4.55 KB
/
mkdocs.yml
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
site_name: Mahesh Rijal - Notes
site_description: Short snippets/scripts for quick reference, mostly related DevOps & Linux.
site_url: https://notes.maheshrijal.com/
site_author: Mahesh Rijal
repo_url: https://github.com/maheshrijal/notes
repo_name: maheshrijal/notes
edit_uri: edit/main/docs/
copyright: Copyright ©2024 <a href="https://maheshrijal.com" target="_blank" rel="noopener"> Mahesh Rijal</a>
theme:
name: material
font:
text: Roboto
code: Fira Code
# logo: assets/logo.png
icon:
repo: fontawesome/brands/github
logo: material/bookmark-box
edit: material/pen
favicon: images/favicon.png
language: en
features:
- content.action.edit # Show a edit button on page
- content.action.view # Show a view source button on page
- navigation.instant # clicks on all internal links will be intercepted and dispatched via XHR without fully reloading the page
- navigation.tabs
- search.suggest
- search.highlight
- search.share
- navigation.top
- content.code.copy
- navigation.footer
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: green
accent: light blue
toggle:
icon: material/weather-night
name: Dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: green
toggle:
icon: material/weather-sunny
name: Light mode
plugins:
- search:
lang: en
- minify:
minify_html: true
extra:
social:
- icon: fontawesome/solid/paper-plane
link: https://maheshrijal.com/contact
name: Contact me
- icon: fontawesome/brands/github
link: https://mrjl.me/github
name: GitHub
- icon: fontawesome/brands/mastodon
link: https://mrjl.me/mastodon
name: Mastodon
- icon: fontawesome/brands/linkedin
link: https://mrjl.me/linkedin
name: LinkedIn
nav:
- Ansible:
- AdHoc Commands: "ansible/adhoc.md"
- Snippets: "ansible/snippets.md"
- AWS:
- Infrastructure: "aws/infrastructure.md"
- IAM: "aws/iam.md"
- EC2: "aws/ec2.md"
- S3: "aws/s3.md"
- RDS: "aws/rds.md"
- NOSQL: "aws/nosql.md"
- VPC: "aws/vpc.md"
- Logging: "aws/logging.md"
- Route 53: "aws/route53.md"
- Elasticache: "aws/elasticache.md"
- Containers: "aws/containers.md"
- CDN: "aws/cdn.md"
- Cloudformation: "aws/cloudformation.md"
- Availability & Scalability: "aws/ha.md"
- Encryption: "aws/encryption.md"
- Security: "aws/security.md"
- Serverless: "aws/serverless.md"
- Hybrid Environments: "aws/hybrid-environments.md"
- Machine Learning: "aws/machine-learning.md"
- "CLI": "aws/cli.md"
- "Recap": "aws/recap.md"
- Docker:
- Docker Info: "docker/docker-info.md"
- Docker Images: "docker/docker-images.md"
- Container Management: "docker/container-management.md"
- Docker Networking: "docker/networking.md"
- Docker Storage & Volumes: "docker/storage.md"
- Docker Compose: "docker/compose.md"
- Linux:
- Curl: "linux/curl.md"
- VIM: "linux/vim.md"
- WSL2: "linux/wsl.md"
- Cron: "linux/cron.md"
- Grep: "linux/grep.md"
- TMUX: "linux/tmux.md"
- Kubernetes:
- Intro: "k8s/intro.md"
- Architecture: "k8s/architecture.md"
- kubectl: "k8s/kubectl.md"
- Terminology: "k8s/terminology.md"
- Examples: "k8s/examples.md"
- Snippets: "snippets.md"
- TIL:
- "til/index.md"
- "til/shebang.md"
- "til/recursively-fetch-linux-version-k8s.md"
- Terminate hung SSH session: "til/disconnect-hung-ssh-session.md"
- Label commit messages with Conventional Commits: "til/using-conventional-commits.md"
- Copy files Recursively from Docker: "til/recursive-copy-docker.md"
- Git Push asking Username & Password: "til/git-push-requires-username-password.md"
- Duplicate Browser Tab: "til/duplicate-the-current-browser-tab.md"
- Blog ↗: https://maheshrijal.com/
markdown_extensions:
- admonition
- tables
- attr_list
- md_in_html
- def_list
- pymdownx.tasklist
- pymdownx.highlight:
anchor_linenums: true
use_pygments: true
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.snippets
- toc:
permalink: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
extra_css:
- stylesheets/extra.css