forked from DGTech1/dgtech1.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevops-skills.html
More file actions
209 lines (180 loc) · 5.99 KB
/
devops-skills.html
File metadata and controls
209 lines (180 loc) · 5.99 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Must-Have DevOps Skills: Docker, Kubernetes, CI/CD, Terraform & AWS</title>
<!-- SEO Meta -->
<meta name="description" content="Explore must-have DevOps skills including Docker, Kubernetes, Jenkins, GitHub Actions, Terraform, and AWS. Learn why each tool is critical for modern DevOps engineers." />
<meta name="keywords" content="DevOps skills, Docker DevOps, Kubernetes DevOps, Jenkins CI/CD, GitHub Actions, Terraform IaC, AWS DevOps" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicons -->
<link rel="icon" type="image/x-icon" href="/assets/favicon/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png">
<link rel="stylesheet" href="assets/css/style.css" />
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background-color: #0f172a;
color: #e5e7eb;
margin: 0;
line-height: 1.7;
}
header {
background: linear-gradient(90deg, #2563eb, #06b6d4);
padding: 50px 20px;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5rem;
color: #ffffff;
}
header p {
max-width: 900px;
margin: 15px auto 0;
color: #e0f2fe;
font-size: 1.1rem;
}
main {
max-width: 1100px;
margin: 60px auto;
padding: 0 20px;
}
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}
.skill-card {
background-color: #020617;
border: 1px solid #1e293b;
border-radius: 10px;
padding: 25px;
transition: transform 0.3s ease, border-color 0.3s ease;
}
.skill-card:hover {
transform: translateY(-5px);
border-color: #38bdf8;
}
.skill-card h2 {
margin-top: 0;
color: #93c5fd;
font-size: 1.4rem;
}
.skill-card p {
color: #cbd5f5;
}
.skill-card a {
display: inline-block;
margin-top: 15px;
color: #38bdf8;
text-decoration: none;
font-weight: 600;
}
.skill-card a:hover {
text-decoration: underline;
}
footer {
background-color: #020617;
text-align: center;
padding: 30px 20px;
color: #9ca3af;
margin-top: 80px;
}
</style>
</head>
<body>
<!-- ================= HEADER ================= -->
<header>
<nav>
<div class="logo">
<strong>DGTech Consultancy</strong>
</div>
<div>
<a href="https://www.dgtechconsultancy.com/#home">Home</a>
<a href="https://www.dgtechconsultancy.com/#services">Services</a>
<a href="https://www.dgtechconsultancy.com/#training">Training</a>
<a href="https://www.dgtechconsultancy.com/#blog">Blog</a>
<a href="https://www.dgtechconsultancy.com/contact.html" target="_blank" rel="noopener noreferrer">Contact</a>
</div>
<div class="logo-container">
<img src="images/dgtechweb.png" alt="DGTech Logo" width="250" height="100" class="main-logo">
</div>
</nav>
</header>
<div class="page-wrapper">
<main class="page-container">
<h1>Must-Have DevOps Skills</h1>
<p>
Modern DevOps engineers rely on a powerful set of tools to automate,
scale, and secure software delivery. Below are the most in-demand
DevOps skills powering cloud-native and CI/CD-driven organizations.
</p>
<main>
<section class="skills-grid">
<div class="skill-card">
<h2>Docker</h2>
<p>
Docker enables containerization, allowing applications to run
consistently across development, testing, and production environments.
</p>
<a href="docker-devops.html">Learn more about Docker →</a>
</div>
<div class="skill-card">
<h2>Kubernetes</h2>
<p>
Kubernetes orchestrates containerized applications, providing
scalability, self-healing, and high availability at scale.
</p>
<a href="kubernetes-devops.html">Learn more about Kubernetes →</a>
</div>
<div class="skill-card">
<h2>Jenkins</h2>
<p>
Jenkins automates CI/CD pipelines, enabling continuous integration
and delivery through extensible automation workflows.
</p>
<a href="jenkins-devops.html">Learn more about Jenkins →</a>
</div>
<div class="skill-card">
<h2>GitHub Actions</h2>
<p>
GitHub Actions provides native CI/CD automation within GitHub,
simplifying DevOps pipelines and improving developer productivity.
</p>
<a href="github-actions-devops.html">Learn more about GitHub Actions →</a>
</div>
<div class="skill-card">
<h2>Terraform</h2>
<p>
Terraform enables Infrastructure as Code, allowing DevOps teams
to provision and manage infrastructure using version-controlled code.
</p>
<a href="terraform-devops.html">Learn more about Terraform →</a>
</div>
<div class="skill-card">
<h2>AWS</h2>
<p>
AWS is the leading cloud platform, offering scalable compute,
storage, networking, and DevOps-native automation services.
</p>
<a href="aws-devops.html">Learn more about AWS →</a>
</div>
</section>
</main>
</main>
<!-- ================= FOOTER ================= -->
<footer>
<p>© 2025 DGTech Consultancy Private Limited</p>
<p>
<a href="/">Home</a> |
<a href="/privacy.html" target="_blank" rel="noopener noreferrer">Privacy Policy</a> |
<a href="/terms.html" target="_blank" rel="noopener noreferrer">Terms</a> |
<a href="/contact.html" target="_blank" rel="noopener noreferrer">Contact Us</a>
</p>
</footer>
</div>
</body>
</html>