-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
784 lines (698 loc) · 25 KB
/
index.html
File metadata and controls
784 lines (698 loc) · 25 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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevOps Manifesto — Engineering, not Operations</title>
<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=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=JetBrains+Mono:wght@400;700&family=Source+Sans+3:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--ink: #1a1a1a;
--paper: #f5f0e8;
--paper-aged: #ebe5d9;
--accent: #c73e1d;
--accent-dark: #a32f12;
--highlight: #2d5a4a;
--muted: #6b6860;
--rule: #d4cfc3;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Source Sans 3', Georgia, serif;
background: var(--paper);
color: var(--ink);
line-height: 1.7;
font-size: 18px;
min-height: 100vh;
position: relative;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
opacity: 0.03;
pointer-events: none;
z-index: 1000;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 0 2rem;
}
/* Header */
header {
padding: 6rem 0 4rem;
text-align: center;
border-bottom: 1px solid var(--rule);
position: relative;
}
header::after {
content: '⚙';
position: absolute;
bottom: -1.5rem;
left: 50%;
transform: translateX(-50%);
font-size: 2rem;
background: var(--paper);
padding: 0 1rem;
color: var(--muted);
}
.eyebrow {
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 1.5rem;
opacity: 0;
animation: fadeUp 0.8s ease forwards;
}
h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(2.5rem, 8vw, 4.5rem);
font-weight: 900;
line-height: 1.1;
margin-bottom: 1rem;
opacity: 0;
animation: fadeUp 0.8s ease 0.2s forwards;
}
h1 span {
display: block;
font-style: italic;
font-weight: 400;
font-size: 0.5em;
color: var(--muted);
margin-top: 0.5rem;
}
.subtitle {
font-family: 'Playfair Display', serif;
font-size: 1.25rem;
font-style: italic;
color: var(--muted);
max-width: 500px;
margin: 0 auto;
opacity: 0;
animation: fadeUp 0.8s ease 0.4s forwards;
}
/* Premise section */
.premise {
padding: 5rem 0;
background: var(--paper-aged);
border-bottom: 1px solid var(--rule);
}
.premise-text {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
line-height: 1.8;
text-align: center;
max-width: 700px;
margin: 0 auto;
}
.premise-text strong {
color: var(--accent);
font-weight: 700;
}
/* Core Values - Agile Style */
.core-values {
padding: 5rem 0;
border-bottom: 1px solid var(--rule);
}
.section-title {
font-family: 'Playfair Display', serif;
font-size: 2rem;
text-align: center;
margin-bottom: 3rem;
position: relative;
}
.section-title::before,
.section-title::after {
content: '—';
margin: 0 1rem;
color: var(--rule);
}
.value-grid {
display: grid;
gap: 2rem;
}
.value-item {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
gap: 1.5rem;
padding: 2rem;
background: white;
border: 1px solid var(--rule);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-item:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.value-left {
text-align: right;
font-family: 'Playfair Display', serif;
font-size: 1.4rem;
font-weight: 700;
color: var(--highlight);
}
.value-vs {
font-family: 'JetBrains Mono', monospace;
font-size: 0.7rem;
letter-spacing: 0.2em;
color: var(--muted);
padding: 0.5rem 1rem;
border: 1px solid var(--rule);
background: var(--paper);
}
.value-right {
font-size: 1.1rem;
color: var(--muted);
text-decoration: line-through;
text-decoration-color: var(--accent);
}
/* Principles */
.principles {
padding: 5rem 0;
background: var(--ink);
color: var(--paper);
}
.principles .section-title {
color: var(--paper);
}
.principles .section-title::before,
.principles .section-title::after {
color: var(--muted);
}
.principle {
margin-bottom: 3rem;
padding: 2.5rem;
border-left: 4px solid var(--accent);
background: rgba(255,255,255,0.03);
position: relative;
}
.principle-number {
font-family: 'Playfair Display', serif;
font-size: 4rem;
font-weight: 900;
color: var(--accent);
opacity: 0.3;
position: absolute;
top: -1rem;
right: 2rem;
}
.principle h3 {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--paper);
}
.principle p {
color: rgba(245, 240, 232, 0.8);
line-height: 1.8;
}
.principle ul {
margin-top: 1rem;
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 0.5rem;
}
.principle li {
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
color: var(--accent);
padding: 0.3rem 0;
white-space: nowrap;
}
.principle li::before {
content: '→ ';
opacity: 0.5;
}
/* Anti-patterns */
.antipatterns {
padding: 5rem 0;
border-bottom: 1px solid var(--rule);
}
.anti-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.anti-item {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 1.5rem;
background: #fff5f5;
border: 1px solid #ffcccc;
transition: transform 0.2s ease;
}
.anti-item:hover {
transform: translateX(5px);
}
.anti-icon {
font-size: 1.5rem;
flex-shrink: 0;
}
.anti-text {
font-size: 0.95rem;
color: var(--ink);
}
/* What we need section */
.cta-section {
padding: 5rem 0;
text-align: center;
background: linear-gradient(180deg, var(--paper) 0%, var(--paper-aged) 100%);
border-bottom: 1px solid var(--rule);
}
.cta-title {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
margin-bottom: 2rem;
}
.cta-points {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
max-width: 700px;
margin: 0 auto 3rem;
}
.cta-point {
font-family: 'JetBrains Mono', monospace;
font-size: 0.9rem;
padding: 0.75rem 1.5rem;
background: var(--highlight);
color: white;
border: none;
}
.final-statement {
font-family: 'Playfair Display', serif;
font-size: 1.75rem;
font-style: italic;
color: var(--accent);
margin-top: 2rem;
padding: 2rem;
border-top: 1px solid var(--rule);
border-bottom: 1px solid var(--rule);
display: inline-block;
}
/* Sign the Manifesto CTA */
.sign-manifesto {
padding: 6rem 0;
background: var(--highlight);
color: white;
text-align: center;
}
.sign-manifesto .section-title {
color: white;
margin-bottom: 2rem;
}
.sign-manifesto .section-title::before,
.sign-manifesto .section-title::after {
color: rgba(255,255,255,0.3);
}
.sign-description {
max-width: 600px;
margin: 0 auto 2.5rem;
font-size: 1.1rem;
line-height: 1.8;
opacity: 0.9;
}
.sign-note {
font-family: 'JetBrains Mono', monospace;
font-size: 0.9rem;
opacity: 0.8;
margin-bottom: 2.5rem;
}
.sign-button {
display: inline-flex;
align-items: center;
gap: 0.75rem;
font-family: 'JetBrains Mono', monospace;
font-size: 1rem;
font-weight: 700;
padding: 1.25rem 2.5rem;
background: white;
color: var(--highlight);
text-decoration: none;
border: none;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sign-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.sign-button svg {
width: 24px;
height: 24px;
}
.sign-url {
font-family: 'JetBrains Mono', monospace;
font-size: 0.8rem;
margin-top: 1.5rem;
opacity: 0.6;
word-break: break-all;
}
/* Footer */
footer {
padding: 3rem 0;
text-align: center;
background: var(--ink);
color: var(--muted);
font-family: 'JetBrains Mono', monospace;
font-size: 0.8rem;
}
footer a {
color: var(--accent);
text-decoration: none;
}
/* Animations */
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
/* Responsive */
@media (max-width: 768px) {
.value-item {
grid-template-columns: 1fr;
text-align: center;
gap: 0.75rem;
}
.value-left {
text-align: center;
}
.principle-number {
font-size: 3rem;
top: -0.5rem;
right: 1rem;
}
.principle {
padding: 2rem 1.5rem;
}
.principle ul {
grid-template-columns: 1fr;
}
.sign-button {
padding: 1rem 1.5rem;
font-size: 0.9rem;
}
}
/* Print styles */
@media print {
body::before {
display: none;
}
.principles,
.sign-manifesto {
background: white;
color: black;
}
.principles .section-title,
.principle h3,
.sign-manifesto .section-title {
color: black;
}
.principle p,
.sign-description {
color: #333;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<p class="eyebrow">A manifesto for those who build software</p>
<h1>
DevOps Manifesto
<span>Engineering, not Operations</span>
</h1>
<p class="subtitle">
For those who design, structure, and evolve software ecosystems—not just production environments.
</p>
</div>
</header>
<section class="premise">
<div class="container">
<p class="premise-text fade-in">
<strong>DevOps is not a job title.</strong><br>
DevOps is not a rebranded sysadmin.<br>
DevOps is not "the person who runs the pipeline" or "knows Kubernetes commands".<br><br>
<strong>DevOps is software engineering</strong> applied to the entire product lifecycle.
</p>
</div>
</section>
<section class="core-values">
<div class="container">
<h2 class="section-title">Core Values</h2>
<div class="value-grid">
<div class="value-item fade-in">
<div class="value-left">Software Engineering</div>
<div class="value-vs">OVER</div>
<div class="value-right">Cloud console management</div>
</div>
<div class="value-item fade-in">
<div class="value-left">Development Environments</div>
<div class="value-vs">OVER</div>
<div class="value-right">Production environments only</div>
</div>
<div class="value-item fade-in">
<div class="value-left">Developer Experience</div>
<div class="value-vs">OVER</div>
<div class="value-right">Cloud provisioning</div>
</div>
<div class="value-item fade-in">
<div class="value-left">Structures & Standards</div>
<div class="value-vs">OVER</div>
<div class="value-right">YAML and configurations</div>
</div>
</div>
</div>
</section>
<section class="principles">
<div class="container">
<h2 class="section-title">The Five Principles</h2>
<article class="principle fade-in">
<span class="principle-number">I</span>
<h3>Engineer for Containerization</h3>
<p>
Not "slap Docker on it", but design software that <em>can be</em> containerized.
Software with clear boundaries, external configurations, deterministic builds.
</p>
<ul>
<li>Clear boundaries</li>
<li>External configs</li>
<li>Deterministic builds</li>
<li>Managed dependencies</li>
<li>Reproducible artifacts</li>
<li>Minimal runtime</li>
</ul>
</article>
<article class="principle fade-in">
<span class="principle-number">II</span>
<h3>Engineer Pipelines & Automation</h3>
<p>
The pipeline is not a YAML file: it's the <strong>product</strong>.
It must be fast, parallelizable, self-validating, capable of spinning up and tearing down environments.
</p>
<ul>
<li>Speed</li>
<li>Parallelism</li>
<li>Self-validation</li>
<li>Infra as Code</li>
<li>Part of architecture</li>
</ul>
</article>
<article class="principle fade-in">
<span class="principle-number">III</span>
<h3>Engineer Project Structure</h3>
<p>
DevOps is architecture. Shared standards, conventions, reusable scaffolding,
tools that prevent human error, bootstraps that start "right-first-time".
</p>
<ul>
<li>Shared standards</li>
<li>Clear conventions</li>
<li>Reusable scaffolding</li>
<li>Error prevention</li>
<li>Project bootstraps</li>
</ul>
</article>
<article class="principle fade-in">
<span class="principle-number">IV</span>
<h3>Transform & Modernize Legacy</h3>
<p>
The ability to take software written twenty years ago and bring it to the present:
modularization, containerization, tests where none existed, functional boundaries.
</p>
<ul>
<li>Modularization</li>
<li>Legacy containerization</li>
<li>Test introduction</li>
<li>Functional boundaries</li>
<li>Verifiable standards</li>
</ul>
</article>
<article class="principle fade-in">
<span class="principle-number">V</span>
<h3>DevOps as a DevEx Discipline</h3>
<p>
DevOps is the science of developer environments. Goal: make development
faster, more reliable, and more enjoyable. Starting with developers' daily tools.
</p>
<ul>
<li>Fast feedback loops</li>
<li>Reliable environments</li>
<li>Pleasant workflows</li>
<li>Daily tooling</li>
<li>Quality by construction</li>
</ul>
</article>
</div>
</section>
<section class="antipatterns">
<div class="container">
<h2 class="section-title">Anti-patterns to Eradicate</h2>
<div class="anti-grid">
<div class="anti-item fade-in">
<span class="anti-icon">✗</span>
<span class="anti-text">The "cloud sysadmin" rebranded as DevOps</span>
</div>
<div class="anti-item fade-in">
<span class="anti-icon">✗</span>
<span class="anti-text">"The one who knows how to deploy"</span>
</div>
<div class="anti-item fade-in">
<span class="anti-icon">✗</span>
<span class="anti-text">Operations role managing servers</span>
</div>
<div class="anti-item fade-in">
<span class="anti-icon">✗</span>
<span class="anti-text">Role created to fill organizational gaps</span>
</div>
<div class="anti-item fade-in">
<span class="anti-icon">✗</span>
<span class="anti-text">Kubernetes-first, cloud-first, YAML-first</span>
</div>
<div class="anti-item fade-in">
<span class="anti-icon">✗</span>
<span class="anti-text">Technocracy instead of methodology</span>
</div>
</div>
</div>
</section>
<section class="cta-section">
<div class="container">
<h2 class="cta-title fade-in">The DevOps We Need Today</h2>
<div class="cta-points">
<span class="cta-point fade-in">Build evolvable software</span>
<span class="cta-point fade-in">Improve development environments</span>
<span class="cta-point fade-in">Standardize and automate</span>
<span class="cta-point fade-in">Measure what matters</span>
<span class="cta-point fade-in">Make developers efficient</span>
</div>
<p class="final-statement fade-in">
DevOps is not a department.<br>
DevOps is an engineering discipline.
</p>
</div>
</section>
<section class="sign-manifesto">
<div class="container">
<h2 class="section-title fade-in">Sign the Manifesto</h2>
<p class="sign-description fade-in">
If you believe in this vision of DevOps—focused on engineering, automation,
developer experience, and building better software—you can officially sign the manifesto.
</p>
<p class="sign-note fade-in">
Just leave a comment on the GitHub issue below.<br>
Your comment counts as your signature, and you're welcome to share your ideas or perspective.
</p>
<a href="https://github.com/alterloop/manifesto/issues/1" target="_blank" rel="noopener noreferrer" class="sign-button fade-in">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
</svg>
Sign the Manifesto on GitHub
</a>
<p class="sign-url fade-in">
github.com/alterloop/manifesto/issues/1
</p>
</div>
</section>
<footer>
<div class="container">
<p>From theory to practice — MMXXV</p>
</div>
</footer>
<script>
// Intersection Observer for fade-in animations
const observerOptions = {
root: null,
rootMargin: '0px',
threshold: 0.1
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
observer.unobserve(entry.target);
}
});
}, observerOptions);
// Observe all fade-in elements
document.querySelectorAll('.fade-in').forEach(el => {
observer.observe(el);
});
// Stagger animation for grid items
document.querySelectorAll('.value-item, .anti-item, .principle').forEach((el, index) => {
el.style.transitionDelay = `${index * 0.1}s`;
});
// Smooth scroll for any anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// Console easter egg
console.log('%c⚙ DevOps Manifesto', 'font-size: 24px; font-weight: bold; color: #c73e1d;');
console.log('%cEngineering, not Operations.', 'font-size: 14px; font-style: italic; color: #6b6860;');
</script>
</body>
</html>