|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>Konflux CI/CD Visual Guide</title> |
| 7 | + <style> |
| 8 | + * { |
| 9 | + margin: 0; |
| 10 | + padding: 0; |
| 11 | + box-sizing: border-box; |
| 12 | + } |
| 13 | + |
| 14 | + body { |
| 15 | + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; |
| 16 | + background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); |
| 17 | + min-height: 100vh; |
| 18 | + padding: 40px 20px; |
| 19 | + } |
| 20 | + |
| 21 | + .container { |
| 22 | + max-width: 1200px; |
| 23 | + margin: 0 auto; |
| 24 | + } |
| 25 | + |
| 26 | + h1 { |
| 27 | + color: white; |
| 28 | + text-align: center; |
| 29 | + font-size: 3em; |
| 30 | + margin-bottom: 20px; |
| 31 | + text-shadow: 2px 2px 4px rgba(0,0,0,0.3); |
| 32 | + } |
| 33 | + |
| 34 | + .subtitle { |
| 35 | + color: rgba(255,255,255,0.9); |
| 36 | + text-align: center; |
| 37 | + font-size: 1.3em; |
| 38 | + margin-bottom: 50px; |
| 39 | + } |
| 40 | + |
| 41 | + .cards-grid { |
| 42 | + display: grid; |
| 43 | + grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); |
| 44 | + gap: 30px; |
| 45 | + margin-bottom: 50px; |
| 46 | + } |
| 47 | + |
| 48 | + .card { |
| 49 | + background: white; |
| 50 | + border-radius: 15px; |
| 51 | + padding: 30px; |
| 52 | + box-shadow: 0 10px 30px rgba(0,0,0,0.2); |
| 53 | + transition: transform 0.3s ease, box-shadow 0.3s ease; |
| 54 | + cursor: pointer; |
| 55 | + text-decoration: none; |
| 56 | + color: inherit; |
| 57 | + display: block; |
| 58 | + } |
| 59 | + |
| 60 | + .card:hover { |
| 61 | + transform: translateY(-10px); |
| 62 | + box-shadow: 0 20px 40px rgba(0,0,0,0.3); |
| 63 | + } |
| 64 | + |
| 65 | + .card-icon { |
| 66 | + font-size: 3em; |
| 67 | + margin-bottom: 15px; |
| 68 | + } |
| 69 | + |
| 70 | + .card h2 { |
| 71 | + color: #333; |
| 72 | + margin-bottom: 15px; |
| 73 | + font-size: 1.5em; |
| 74 | + } |
| 75 | + |
| 76 | + .card p { |
| 77 | + color: #666; |
| 78 | + line-height: 1.6; |
| 79 | + margin-bottom: 15px; |
| 80 | + } |
| 81 | + |
| 82 | + .card-tag { |
| 83 | + display: inline-block; |
| 84 | + background: #667eea; |
| 85 | + color: white; |
| 86 | + padding: 5px 15px; |
| 87 | + border-radius: 20px; |
| 88 | + font-size: 0.85em; |
| 89 | + margin-right: 5px; |
| 90 | + margin-top: 10px; |
| 91 | + } |
| 92 | + |
| 93 | + .difficulty { |
| 94 | + display: inline-block; |
| 95 | + padding: 5px 15px; |
| 96 | + border-radius: 20px; |
| 97 | + font-size: 0.85em; |
| 98 | + margin-top: 10px; |
| 99 | + } |
| 100 | + |
| 101 | + .difficulty.beginner { |
| 102 | + background: #48bb78; |
| 103 | + color: white; |
| 104 | + } |
| 105 | + |
| 106 | + .difficulty.intermediate { |
| 107 | + background: #ed8936; |
| 108 | + color: white; |
| 109 | + } |
| 110 | + |
| 111 | + .difficulty.advanced { |
| 112 | + background: #f56565; |
| 113 | + color: white; |
| 114 | + } |
| 115 | + |
| 116 | + .footer { |
| 117 | + text-align: center; |
| 118 | + color: white; |
| 119 | + margin-top: 50px; |
| 120 | + opacity: 0.8; |
| 121 | + } |
| 122 | + |
| 123 | + @media (max-width: 768px) { |
| 124 | + h1 { |
| 125 | + font-size: 2em; |
| 126 | + } |
| 127 | + |
| 128 | + .cards-grid { |
| 129 | + grid-template-columns: 1fr; |
| 130 | + } |
| 131 | + } |
| 132 | + </style> |
| 133 | +</head> |
| 134 | +<body> |
| 135 | + <div class="container"> |
| 136 | + <h1>🎨 Konflux CI/CD Visual Guide</h1> |
| 137 | + <p class="subtitle">Interactive diagrams and visual resources to understand the complete workflow</p> |
| 138 | + |
| 139 | + <div class="cards-grid"> |
| 140 | + <a href="README.html" class="card"> |
| 141 | + <div class="card-icon">ℹ️</div> |
| 142 | + <h2>About & Contributing</h2> |
| 143 | + <p>Information about these visual guides, technical details, style guide, and how to contribute new guides or update existing ones.</p> |
| 144 | + <span class="difficulty beginner">All Levels</span> |
| 145 | + <span class="card-tag">Meta</span> |
| 146 | + </a> |
| 147 | + |
| 148 | + <a href="visual-components-map.html" class="card"> |
| 149 | + <div class="card-icon">🧩</div> |
| 150 | + <h2>Complete Components Map</h2> |
| 151 | + <p>Searchable directory of all 50+ Konflux components organized by category (Core CI/CD, Platform, Developer Tools, Infrastructure, Monitoring).</p> |
| 152 | + <span class="difficulty beginner">Beginner</span> |
| 153 | + <span class="card-tag">Searchable</span> |
| 154 | + </a> |
| 155 | + |
| 156 | + <a href="visual-pr-workflow.html" class="card"> |
| 157 | + <div class="card-icon">🔄</div> |
| 158 | + <h2>PR Workflow Timeline</h2> |
| 159 | + <p>Watch the complete journey of a code change from PR to production deployment with animated timeline and real timing estimates.</p> |
| 160 | + <span class="difficulty beginner">Beginner</span> |
| 161 | + <span class="card-tag">Animated</span> |
| 162 | + </a> |
| 163 | + |
| 164 | + <a href="visual-testing-flow.html" class="card"> |
| 165 | + <div class="card-icon">🧪</div> |
| 166 | + <h2>E2E Testing Flow</h2> |
| 167 | + <p>Explore the 4-phase testing process with real test suite names: cluster provisioning, bootstrap, test execution, and reporting with expandable details.</p> |
| 168 | + <span class="difficulty intermediate">Intermediate</span> |
| 169 | + <span class="card-tag">Expandable</span> |
| 170 | + </a> |
| 171 | + |
| 172 | + <a href="visual-e2e-infra-tests.html" class="card"> |
| 173 | + <div class="card-icon">🧪</div> |
| 174 | + <h2>E2E Tests for infra-deployments</h2> |
| 175 | + <p>EXACTLY what tests run when infra-deployments CI triggers. Intelligent rules engine, component-specific tests, and what each label means.</p> |
| 176 | + <span class="difficulty intermediate">Intermediate</span> |
| 177 | + <span class="card-tag">Critical</span> |
| 178 | + </a> |
| 179 | + |
| 180 | + <a href="visual-renovate-workflow.html" class="card"> |
| 181 | + <div class="card-icon">🤖</div> |
| 182 | + <h2>Renovate/MintMaker Workflow</h2> |
| 183 | + <p>Deep dive into HOW and WHEN MintMaker creates automated PRs in infra-deployments. Real timing, real examples, real file locations from your workspace!</p> |
| 184 | + <span class="difficulty intermediate">Intermediate</span> |
| 185 | + <span class="card-tag">Detailed</span> |
| 186 | + </a> |
| 187 | + |
| 188 | + <a href="visual-pr-pairing.html" class="card"> |
| 189 | + <div class="card-icon">🤝</div> |
| 190 | + <h2>PR Pairing Explained</h2> |
| 191 | + <p>Complete guide to PR pairing for breaking changes with side-by-side comparisons, real examples, and exact syntax reference.</p> |
| 192 | + <span class="difficulty intermediate">Intermediate</span> |
| 193 | + <span class="card-tag">Step-by-Step</span> |
| 194 | + </a> |
| 195 | + |
| 196 | + <a href="visual-kustomize-overlays.html" class="card"> |
| 197 | + <div class="card-icon">🎨</div> |
| 198 | + <h2>Understanding Kustomize Overlays</h2> |
| 199 | + <p>Complete guide to overlay patterns used throughout infra-deployments. Learn base vs overlays, when to use each, and how to structure your changes properly.</p> |
| 200 | + <span class="difficulty intermediate">Intermediate</span> |
| 201 | + <span class="card-tag">Fundamental</span> |
| 202 | + </a> |
| 203 | + </div> |
| 204 | + |
| 205 | + <div class="footer"> |
| 206 | + <p>💡 Tip: Start with "Components Map" if you're new, or jump to any specific topic you need!</p> |
| 207 | + <p style="margin-top: 10px; opacity: 0.6;">Konflux CI/CD Documentation • Visual Learning Resources</p> |
| 208 | + </div> |
| 209 | + </div> |
| 210 | +</body> |
| 211 | +</html> |
| 212 | + |
0 commit comments