-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdevops-workflow.html
More file actions
77 lines (64 loc) · 3.14 KB
/
devops-workflow.html
File metadata and controls
77 lines (64 loc) · 3.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AWS for DevOps: Cloud Platform at Scale</title>
<meta name="description" content="Learn DevOps skill for cloud automation, scalability, CI/CD integration, and modern application delivery." />
<meta name="keywords" content="SCM, GIT, CI, CD, IaC, DevOps, Monitoring,Logging" />
<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" />
</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>DevOps Architecture and Workflow</h1>
<p> DevOps emphasizes automation, continuous feedback, and shared responsibility across the entire software development lifecycle (SDLC).</p>
<p>A typical DevOps workflow consists of the following stages:</p>
<p><b>Source Code Management (SCM)</b><br>
Developers commit code to version control systems such as Git, GitHub, or GitLab.</p>
<p><b>Continuous Integration (CI)</b><br>
CI tools like Jenkins, GitHub Actions, or GitLab CI/CD automatically build and test code with every commit, ensuring early detection of defects.
</p>
<p><b>Continuous Delivery and Deployment (CD)</b><br>
Applications are packaged and deployed automatically using pipelines that support staging and production environments.</p>
<p><b>Infrastructure as Code (IaC)</b><br>
Infrastructure is provisioned and managed using code with tools like Terraform, AWS CloudFormation, or Ansible.</p>
<p><b>Monitoring and Logging</b><br>
Systems are continuously monitored using tools such as Prometheus, Grafana, and ELK Stack to ensure performance, availability, and reliability.<p>
</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>