-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
238 lines (210 loc) ยท 9.1 KB
/
index.html
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The DevOps Hub</title>
<style>
body {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: #333;
background-color: #fff;
transition: background-color 0.3s, color 0.3s;
}
.dark-mode {
background-color: #1a202c;
color: #e2e8f0;
}
.container {
width: 90%;
margin: 0 auto;
}
h1 {
text-align: center;
margin: 2rem 0;
color: #2d3748;
}
.dark-mode h1,
.dark-mode h2,
.dark-mode h3 {
color: #cbd5e0;
}
.icon-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
margin: 2rem 0;
}
.icon-grid img {
height: 28px;
object-fit: contain;
}
a {
color: #4299e1;
text-decoration: none;
}
.dark-mode a {
color: #63b3ed;
}
.toggle-container {
text-align: center;
margin-bottom: 1.5rem;
}
.toggle-button {
padding: 0.5rem 1rem;
font-size: 1rem;
border: none;
cursor: pointer;
background-color: #4299e1;
color: white;
border-radius: 5px;
transition: background-color 0.3s;
}
.toggle-button:hover {
background-color: #3182ce;
}
</style>
<!-- Google Analytics script -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-42PBMZ1BRC"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-42PBMZ1BRC');
</script>
</head>
<body>
<div class="container">
<div class="toggle-container">
<button id="darkModeToggle" class="toggle-button">๐ Dark Mode</button>
</div>
<h1>The DevOps Hub</h1>
<div class="icon-grid">
<img src="https://upload.wikimedia.org/wikipedia/commons/0/05/Devops-toolchain.svg" alt="DevOps" />
<img src="https://skillicons.dev/icons?i=aws" alt="AWS" />
<img src="https://skillicons.dev/icons?i=azure" alt="Azure" />
<img src="https://skillicons.dev/icons?i=docker" alt="Docker" />
<img src="https://skillicons.dev/icons?i=kubernetes" alt="Kubernetes" />
<img src="https://helm.sh/img/helm.svg" alt="Helm" />
<img src="https://skillicons.dev/icons?i=terraform" alt="Terraform" />
<img src="https://skillicons.dev/icons?i=ansible" alt="Ansible" />
<img src="https://skillicons.dev/icons?i=jenkins" alt="Jenkins" />
<img src="https://skillicons.dev/icons?i=bash" alt="Bash" />
<img src="https://skillicons.dev/icons?i=git" alt="Git" />
<img src="https://skillicons.dev/icons?i=elasticsearch" alt="Elasticsearch" />
<img src="https://skillicons.dev/icons?i=prometheus" alt="Prometheus" />
<img src="https://skillicons.dev/icons?i=nginx" alt="Nginx" />
<img src="https://skillicons.dev/icons?i=cloudflare" alt="Cloudflare" />
<img width="32" src="https://upload.wikimedia.org/wikipedia/commons/8/87/Sql_data_base_with_logo.png" alt="SQL" />
<img src="https://skillicons.dev/icons?i=py" alt="Python" />
<img src="https://skillicons.dev/icons?i=gitlab" alt="GitLab" />
<img src="https://avatars.githubusercontent.com/u/30269780" alt="Avatar" />
</div>
<script>
const toggleButton = document.getElementById("darkModeToggle");
const body = document.body;
function setDarkMode(enabled) {
if (enabled) {
body.classList.add("dark-mode");
localStorage.setItem("darkMode", "enabled");
} else {
body.classList.remove("dark-mode");
localStorage.setItem("darkMode", "disabled");
}
}
toggleButton.addEventListener("click", () => {
const isDarkMode = body.classList.contains("dark-mode");
setDarkMode(!isDarkMode);
});
if (localStorage.getItem("darkMode") === "enabled") {
setDarkMode(true);
}
</script>
<h2>Welcome to TheDevOpsHub ๐</h2>
<ul>
<li>A central DevOps learning and practical space with documentation, hands-on samples, demo for wide range of DevOps tools, clouds.</li>
<li>Owner and maintainer: <a href="https://github.com/tungbq">@tungbq</a> (Tung Leo)</li>
<li>GitHub: <a href="https://github.com/thedevopshub">github.com/thedevopshub</a></li>
<li>Website: <a href="https://thedevopshub.org/">thedevopshub.org</a></li>
<li>Email: [email protected]</li>
</ul>
<h2>Projects ๐</h2>
<p><a href="https://github.com/thedevopshub">The DevOps Hub</a> projects information, divided by various DevOps areas:</p>
<h3>The trio DevOps projects</h3>
<ul>
<li><a href="https://github.com/tungbq/devops-basics"><strong>devops-basics</strong></a>: ๐ Practical and document place for DevOps toolchain</li>
<li><a href="https://github.com/tungbq/devops-practice"><strong>devops-practice</strong></a>: A place to learn and practice DevOps in a hands-on way ๐ฎ</li>
<li><a href="https://github.com/tungbq/devops-project"><strong>devops-project</strong></a>: Collection of DevOps projects to level up your DevOps skills</li>
</ul>
<h3>Cloud</h3>
<ul>
<li>
<p><strong>Azure</strong></p>
<ul>
<li><a href="https://github.com/TheDevOpsHub/AzureHub"><strong>AzureHub</strong></a>: โ๏ธ Collection of Azure documentation and learning resources</li>
<li><a href="https://github.com/TheDevOpsHub/AZ-104"><strong>AZ-104</strong></a>: AZ-104 certification learning resources</li>
</ul>
</li>
<li>
<p><strong>AWS</strong></p>
<ul>
<li><a href="https://github.com/tungbq/AWSHub"><strong>AWSHub</strong></a>: ๐ Collection of AWS Services documentation and learning resources โ๏ธ</li>
</ul>
</li>
</ul>
<h3>Linux/OS</h3>
<ul>
<li><a href="https://github.com/TheDevOpsHub/LinuxHub"><strong>LinuxHub</strong></a>: Linux practices, tips and tricks</li>
</ul>
<h3>CI/CD tools</h3>
<ul>
<li><a href="https://github.com/TheDevOpsHub/JenkinsHub"><strong>JenkinsHub</strong></a>: The Jenkins Hub</li>
</ul>
<h3>IaC</h3>
<p>Infrastructure as code</p>
<ul>
<li>
<p><strong>Terraform</strong></p>
<ul>
<li><a href="https://github.com/TheDevOpsHub/TerraformHub"><strong>TerraformHub</strong></a>: ๐ Practical and document place for Terraform</li>
<li><a href="https://github.com/tungbq/aws-lab-with-terraform"><strong>aws-lab-with-terraform</strong></a>: Collection of Terraform code for AWS labs</li>
<li><a href="https://github.com/TheDevOpsHub/terraform-template"><strong>terraform-template</strong></a>: Terraform project template for deploying infrastructure across multiple environments and regions, following best practices with modular structure and automated syntax checks</li>
</ul>
</li>
<li>
<p><strong>Ansible</strong></p>
<ul>
<li><a href="https://github.com/TheDevOpsHub/AnsibleHub"><strong>AnsibleHub</strong></a>: The Ansible Hub</li>
<li><a href="https://github.com/TheDevOpsHub/ansible-template"><strong>ansible-template</strong></a>: Ansible template repository with CI, linting, containerization, and more...</li>
</ul>
</li>
</ul>
<h3>Containerization / K8s</h3>
<ul>
<li><a href="https://github.com/TheDevOpsHub/microservices-deployment"><strong>microservices-deployment</strong></a>: Sample microservices deployment on k8s with Nginx proxy, Prometheus monitoring stack, logging features...</li>
<li><a href="https://github.com/TheDevOpsHub/container-labs"><strong>container-labs</strong></a>: Container labs</li>
<li><a href="https://github.com/tungbq/k8sHub"><strong>k8sHub</strong></a>: Kubernetes deployment samples, practices, and examples</li>
</ul>
<h3>Monitoring</h3>
<ul>
<li><a href="https://github.com/TheDevOpsHub/MonitoringHub"><strong>MonitoringHub</strong></a>: Monitoring Hub - Prometheus, Grafana and more...</li>
<li><a href="https://github.com/TheDevOpsHub/prometheus-stack"><strong>prometheus-stack</strong></a>: Docker compose for the Prometheus monitoring stack</li>
</ul>
<h3>Cheatsheet</h3>
<ul>
<li><a href="https://github.com/tungbq/cmd"><strong>cmd</strong></a>: A bookmark for daily used command line :bookmark: (URL: <a href="https://tungbq.github.io/cmd">tungbq.github.io/cmd</a>)</li>
</ul>
<h3>Books</h3>
<ul>
<li><a href="https://github.com/TheDevOpsHub/Books"><strong>Books</strong></a>: ๐ Collection of DevOps books</li>
</ul>
<p>...and more upcoming content...โฉ you can follow this GitHub organization to get more up-to-dated content โญ</p>
<p>Checkout all the repositories at <a href="https://github.com/orgs/TheDevOpsHub/repositories"><strong>TheDevOpsHub/repositories</strong></a></p>
</div>
</body>
</html>