-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticle-tool-map.html
More file actions
119 lines (107 loc) · 5.4 KB
/
article-tool-map.html
File metadata and controls
119 lines (107 loc) · 5.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Platform Engineering Tool Map - Platform Engineering Toolkit</title>
<meta name="description" content="Navigate the complex ecosystem of platform engineering tools with this comprehensive interactive guide.">
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Header -->
<header class="header">
<div class="container">
<nav class="nav">
<a href="index.html" class="nav-brand">Platform Engineering Toolkit</a>
<div class="nav-links">
<a href="index.html" class="nav-link">Home</a>
<a href="about.html" class="nav-link">About</a>
</div>
</nav>
</div>
</header>
<!-- Main Content -->
<main>
<div class="container">
<!-- Article Header -->
<div class="article-header">
<a href="what-and-why.html" class="back-btn">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M19 12H5m7-7l-7 7 7 7"/>
</svg>
Back to What And Why
</a>
<div class="article-meta">
<span class="badge">Canvas</span>
<div class="meta-item">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="10"/>
<polyline points="12,6 12,12 16,14"/>
</svg>
Interactive guide
</div>
</div>
<h1 class="article-title">The Platform Engineering Tool Map</h1>
<div class="article-audience">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/>
<circle cx="9" cy="7" r="4"/>
<path d="M23 21v-2a4 4 0 0 0-3-3.87"/>
<path d="M16 3.13a4 4 0 0 1 0 7.75"/>
</svg>
<span>For: Platform Engineers, DevOps Teams</span>
</div>
</div>
<!-- Article Content -->
<div class="article-content">
<div class="prose">
<h2>Platform Engineering Tool Landscape</h2>
<p>Navigate the complex ecosystem of platform engineering tools with this comprehensive guide.</p>
<h2>Infrastructure as Code</h2>
<ul>
<li><strong>Terraform:</strong> Multi-cloud infrastructure provisioning</li>
<li><strong>Pulumi:</strong> Infrastructure as code with programming languages</li>
<li><strong>AWS CDK:</strong> Cloud Development Kit for AWS</li>
</ul>
<h2>Container Orchestration</h2>
<ul>
<li><strong>Kubernetes:</strong> Container orchestration platform</li>
<li><strong>Docker:</strong> Containerization technology</li>
<li><strong>Helm:</strong> Kubernetes package manager</li>
</ul>
<h2>CI/CD Tools</h2>
<ul>
<li><strong>GitLab CI/CD:</strong> Integrated DevOps platform</li>
<li><strong>GitHub Actions:</strong> Workflow automation</li>
<li><strong>Jenkins:</strong> Open-source automation server</li>
</ul>
<h2>Observability</h2>
<ul>
<li><strong>Prometheus:</strong> Monitoring and alerting</li>
<li><strong>Grafana:</strong> Visualization and dashboards</li>
<li><strong>Jaeger:</strong> Distributed tracing</li>
</ul>
<h2>Developer Portals</h2>
<ul>
<li><strong>Backstage:</strong> Developer portal framework</li>
<li><strong>Port:</strong> Developer portal platform</li>
<li><strong>Cortex:</strong> Internal developer portal</li>
</ul>
</div>
</div>
<!-- Article Navigation -->
<div class="article-nav">
<p class="article-nav-text">Continue your platform engineering journey</p>
<div class="article-nav-buttons">
<a href="what-and-why.html" class="btn-outline">← More Articles</a>
<a href="where-to-start.html" class="btn-outline">Where To Start →</a>
</div>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>