-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (52 loc) · 2.95 KB
/
index.html
File metadata and controls
54 lines (52 loc) · 2.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive DevOps Process Guide</title>
<link rel="icon" href="data:,">
<link rel="stylesheet" href="assets/css/styles.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@3.9.1/dist/chart.min.js"></script>
<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 class="text-gray-800">
<div class="flex flex-col md:flex-row min-h-screen">
<aside class="w-full md:w-64 bg-white border-r border-gray-200 p-4 md:p-6">
<h1 class="text-xl font-bold text-gray-900 mb-6">DevOps Guide</h1>
<nav id="navigation" class="space-y-2">
<a href="#overview" class="nav-item flex items-center px-4 py-2 text-gray-600 rounded-lg hover:bg-gray-100 transition-colors duration-200 active">
<span class="mr-3">🚀</span> Overview
</a>
<a href="#dockerize" class="nav-item flex items-center px-4 py-2 text-gray-600 rounded-lg hover:bg-gray-100 transition-colors duration-200">
<span class="mr-3">📦</span> 1. Dockerize
</a>
<a href="#build" class="nav-item flex items-center px-4 py-2 text-gray-600 rounded-lg hover:bg-gray-100 transition-colors duration-200">
<span class="mr-3">🔨</span> 2. Build & Test
</a>
<a href="#kubernetes" class="nav-item flex items-center px-4 py-2 text-gray-600 rounded-lg hover:bg-gray-100 transition-colors duration-200">
<span class="mr-3">⚙️</span> 3. Setup Kubernetes
</a>
<a href="#helm" class="nav-item flex items-center px-4 py-2 text-gray-600 rounded-lg hover:bg-gray-100 transition-colors duration-200">
<span class="mr-3">🧭</span> 4. Helm Chart
</a>
<a href="#deploy" class="nav-item flex items-center px-4 py-2 text-gray-600 rounded-lg hover:bg-gray-100 transition-colors duration-200">
<span class="mr-3">🚢</span> 5. Deploy
</a>
<a href="#scale" class="nav-item flex items-center px-4 py-2 text-gray-600 rounded-lg hover:bg-gray-100 transition-colors duration-200">
<span class="mr-3">📈</span> 6. Scale
</a>
</nav>
</aside>
<main id="content" class="flex-1 p-6 md:p-10">
<div id="section-container">
</div>
</main>
</div>
<script src="assets/js/main.js"></script>
<script src="assets/js/chart.js"></script>
<script src="assets/js/copy.js"></script>
</body>
</html>