-
Notifications
You must be signed in to change notification settings - Fork 1
/
k8sCleaner.html
645 lines (606 loc) · 31.8 KB
/
k8sCleaner.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-RPZHSGVBB5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-RPZHSGVBB5');
</script>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>K8s Cleaner - Kubernetes Cluster Cleanup Tool</title>
<!-- Primary Meta Tags -->
<meta name="title" content="K8s Cleaner - Kubernetes Cluster Cleanup Tool" />
<meta name="description" content="K8s Cleaner is a powerful tool that automates the cleanup of unused resources in Kubernetes clusters, ensuring optimal performance and resource utilization." />
<!--====== Favicon Icon ======-->
<link
rel="shortcut icon"
href="assets/images/SveltoslogoFav.png"
type="image/png"
/>
<!-- ===== All CSS files ===== -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/animate.css" />
<link rel="stylesheet" href="assets/css/lineicons.css" />
<link rel="stylesheet" href="assets/css/ud-styles.css" />
<style>
.ud-demos {
padding: 120px 0;
position: relative;
background: var(--ud-primary-color);
}
.ud-video-wrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 aspect ratio */
height: 0;
overflow: hidden;
border-radius: 10px;
box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}
.ud-video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.ud-video-caption {
color: var(--ud-white);
}
.ud-video-caption h4 {
font-size: 24px;
margin-bottom: 10px;
}
.ud-video-caption p {
opacity: 0.8;
}
.ud-history {
padding: 120px 0;
position: relative;
background: var(--ud-primary-color);
}
.timeline-container {
padding: 60px 0;
max-width: 1000px;
margin: 0 auto;
}
.timeline {
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 40px;
}
/* The line */
.timeline::before {
content: '';
position: absolute;
top: 50%;
left: 0;
width: 100%;
height: 4px;
background: rgba(255, 255, 255, 0.3);
z-index: 1;
transform: translateY(-50%);
}
.event {
position: relative;
width: 33.33%;
text-align: center;
z-index: 2;
}
.content {
margin-bottom: 50px;
}
.year {
color: #fff;
font-size: 24px;
font-weight: bold;
margin-bottom: 15px;
}
.description {
color: rgba(255, 255, 255, 0.8);
font-size: 16px;
line-height: 1.5;
}
.circle {
width: 40px;
height: 40px;
background: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
color: var(--ud-primary-color);
font-weight: bold;
box-shadow: 0 0 0 4px var(--ud-primary-color);
position: relative;
z-index: 3;
}
/* Responsive design */
@media (max-width: 768px) {
.timeline {
flex-direction: column;
margin: 0;
}
.timeline::before {
top: 0;
left: 50%;
width: 4px;
height: 100%;
transform: translateX(-50%);
}
.event {
width: 100%;
margin-bottom: 60px;
}
.event:last-child {
margin-bottom: 0;
}
.content {
margin-bottom: 20px;
}
.circle {
margin: 20px auto 0;
}
}
</style>
</head>
<body>
<!-- ====== Header Start ====== -->
<header class="ud-header">
<div class="container">
<div class="row">
<div class="col-lg-12">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="k8sCleaner.html">
<span class="fw-bold text-white startup-logo">K8s Cleaner</span>
</a>
<button class="navbar-toggler">
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
</button>
<div class="navbar-collapse">
<ul id="nav" class="navbar-nav mx-auto">
<!-- <li class="nav-item"><a class="ud-menu-scroll" href="#home">Home</a></li> -->
<li class="nav-item"><a class="ud-menu-scroll" href="#features">Features</a></li>
<!-- <li class="nav-item"><a class="ud-menu-scroll" href="#demos">Demos</a></li> -->
<li class="nav-item"><a class="ud-menu-scroll" href="#about">How it works</a></li>
<li class="nav-item"><a href="blog.html"> Blog </a></li>
<li class="nav-item"><a class="ud-menu-scroll" href="#team">Team</a></li>
<li class="nav-item"><a class="ud-menu-scroll" href="#contact">Contact</a></li>
<li class="nav-item"><a href="index.html"> Other Products </a></li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</header>
<!-- ====== Header End ====== -->
<!-- ====== Hero Start ====== -->
<section class="ud-hero" id="home">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-hero-content wow fadeInUp" data-wow-delay=".2s">
<h1 class="ud-hero-title">Optimize Your Kubernetes Clusters with K8s Cleaner</h1>
<p class="ud-hero-desc">Designed for Kubernetes administrators, K8s Cleaner efficiently identifies and removes unused resources to enhance cluster performance and reduce operational costs.</p>
<ul class="ud-hero-buttons">
<li><a href="https://gianlucam76.github.io/k8s-cleaner/getting_started/install/install/" rel="nofollow noopener" target="_blank" class="ud-main-btn ud-white-btn"> Get Started </a></li>
<li><a href="https://github.com/gianlucam76/k8s-cleaner" rel="nofollow noopener" target="_blank" class="ud-main-btn ud-link-btn"> Contribute <i class="lni lni-arrow-right"></i> </a></li>
</ul>
</div>
<div
class="ud-hero-brands-wrapper wow fadeInUp"
data-wow-delay=".3s"
>
<img src="assets/images/hero/brand.svg" alt="brand" />
</div>
<div class="ud-hero-image wow fadeInUp" data-wow-delay=".25s">
<img src="assets/images/hero/K8s-cleaner-hero.gif" alt="hero-image" />
<img
src="assets/images/hero/dotted-shape.svg"
alt="shape"
class="shape shape-1"
/>
<img
src="assets/images/hero/dotted-shape.svg"
alt="shape"
class="shape shape-2"
/>
</div>
</div>
</div>
</div>
</section>
<!-- ====== Hero End ====== -->
<!-- ====== Features Start ====== -->
<section id="features" class="ud-features">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title text-center mx-auto">
<h2>Streamlining Kubernetes Resource Management</h2>
<p> As Kubernetes deployments grow more complex, maintaining a clean and efficient cluster is paramount. K8s-cleaner is a robust Kubernetes controller that identifies and eliminates unused, stale, and unhealthy resources in your cluster, ensuring optimal performance and resource utilization.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-feature wow fadeInUp" data-wow-delay=".1s">
<div class="ud-feature-icon"><i class="lni lni-control-panel"></i></div>
<div class="ud-feature-content">
<h3 class="ud-feature-title">Comprehensive Automated Resource Cleanup</h3>
<p class="ud-feature-desc">K8s Cleaner handles any resource type, including standard Kubernetes resources and <b>CRDs</b>. You can create your own rules to find unused or unhealthy resources based on specific criteria. Additionally, it comes with a vast library of pre-defined rules for common use cases, such as <b>stale jobs</b>, <b>old deployments</b>, <b>unused secrets</b>, <b>cluster roles</b>, <b>config maps</b>, <b>ingress</b>, <b>persistent volumes</b>, <b>pods</b>, <b>service accounts</b>, and <b>stateful sets</b>. In addition, K8s Cleaner identifies expired resources based on <b>time to live</b>, explicit <b>expiration dates</b>, or <b>age</b>.</p>
<a href="https://dev.to/gianlucam76/a-controller-to-identify-unused-and-unhealthy-kubernetes-resources-4fce" class="ud-main-btn">Learn More</a>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-feature wow fadeInUp" data-wow-delay=".15s">
<div class="ud-feature-icon"><i class="lni lni-code"></i></div>
<div class="ud-feature-content">
<h3 class="ud-feature-title">Flexible Scheduling and Dry Run Options</h3>
<p class="ud-feature-desc">K8s Cleaner allows users to specify the frequency of scans using <b>Cron</b> syntax, enabling flexible and customizable scheduling of various resource management tasks. To prevent unintended changes, a convenient <b>Dry Run</b> mode is available. This mode allows users to preview which resources will be affected by the cleanup process without making any actual changes to the cluster. It provides valuable insights on the current resource status before any deletion or updates take place, thereby ensuring informed decision-making throughout the cleanup process.</p>
<a href="https://gianlucam76.github.io/k8s-cleaner/getting_started/features/dryrun/dryrun/#introduction-to-dry-run" class="ud-main-btn">Learn More</a>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-feature wow fadeInUp" data-wow-delay=".2s">
<div class="ud-feature-icon"><i class="lni lni-bar-chart"></i></div>
<div class="ud-feature-content">
<h3 class="ud-feature-title">Sophisticated Filtering and Notifications</h3>
<p class="ud-feature-desc">With robust filtering capabilities, K8s Cleaner can select resources based on <b>user-defined labels</b>, allowing for more precise targeting of outdated components. Users can refine their filters by specifying label keys, operations (equal, different, etc.), and values. Additionally, K8s Cleaner keeps users informed about every cleaned-up resource, whether removed or optimized. Notifications can be sent via popular channels like <b>Slack</b>, <b>Webex</b>, <b>Discord</b>, <b>Email</b>, and <b>Microsoft Teams</b>, allowing teams to stay updated on resource management activities.</p>
<a href="https://gianlucam76.github.io/k8s-cleaner/notifications/notifications/#introduction-to-notifications" class="ud-main-btn">Learn More</a>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-sm-6">
<div class="ud-single-feature wow fadeInUp" data-wow-delay=".25s">
<div class="ud-feature-icon"><i class="lni lni-cog"></i></div>
<div class="ud-feature-content">
<h3 class="ud-feature-title">Seamless Integration and Custom Logic</h3>
<p class="ud-feature-desc">K8s Cleaner's integrates with existing Kubernetes frameworks to ensure a smooth onboarding process. Users can easily schedule the controller as a <b>DaemonSet</b> or <b>CronJob</b> to run periodically. Furthermore, advanced users can leverage the <b>Lua scripting</b> language to define custom selection criteria for complex resource management scenarios. This capability empowers users to refine how K8s Cleaner identifies and handles stale resources, streamlining maintenance and enhancing the overall health of their Kubernetes clusters</p>
<a href="https://gianlucam76.github.io/k8s-cleaner/getting_started/features/automated_operations/scale_up_down_resources/" class="ud-main-btn">Learn More</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ====== Features End ====== -->
<!-- ====== Why Start ====== -->
<section id="why" class="ud-testimonials">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title text-center mx-auto">
<h2 style="text-align: center;">Why Choose K8s Cleaner?</h2>
<p style="text-align: center;">
Numerous tools exist that can identify stale resources, both as controllers and standalone applications. So, why opt for K8s Cleaner? The distinct advantage of K8s Cleaner lies in its flexibility. Unlike traditional tools, which rely on predefined criteria for determining what constitutes an unused or unhealthy resource, K8s Cleaner empowers you to define these parameters yourself. This customizable approach ensures that your resource management aligns perfectly with the specific needs and dynamics of your environment.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- ====== Why End ====== -->
<!-- ====== Demos Start ======
<section id="demos" class="ud-demos">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title mx-auto text-center">
<h2>See K8s Cleaner in Action</h2>
<p>Watch our demos to see how K8s Cleaner optimizes Kubernetes resource management</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="ud-demo-video wow fadeInUp" data-wow-delay=".2s">
<div class="ud-video-caption text-center mt-4">
<h4>K8s Cleaner User Interface Video</h4>
<p>Get a quick visual tour of K8s Cleaner's intuitive UI</p>
<div class="text-center mt-4">
<div class="ud-video-wrapper">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/your_video_id" title="K8s Cleaner UI Demo" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="ud-demo-video wow fadeInUp" data-wow-delay=".2s">
<div class="ud-video-caption text-center mt-4">
<h4>K8s Cleaner Click-through Demo</h4>
<p>Take a self-paced, step-by-step overview of K8s Cleaner's top features and workflows</p>
<div class="text-center mt-4">
<div>
<script async src="https://js.storylane.io/js/v2/storylane.js"></script>
<div class="sl-embed" style="position:relative;padding-bottom:calc(53.09% + 25px);width:100%;height:0;transform:scale(1)">
<iframe loading="lazy" class="sl-demo" src="https://app.storylane.io/demo/your_demo_id?embed=inline" name="sl-embed" allow="fullscreen" allowfullscreen style="position:absolute;top:0;left:0;width:100%!important;height:100%!important;border:1px solid rgba(63,95,172,0.35);box-shadow: 0px 0px 18px rgba(26, 19, 72, 0.15);border-radius:10px;box-sizing:border-box;"></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
====== Demos End ====== -->
<!-- ====== About Start ====== -->
<section id="about" class="ud-about">
<div class="container">
<div class="ud-about-wrapper wow fadeInUp" data-wow-delay=".2s">
<div class="ud-about-content-wrapper">
<div class="ud-about-content">
<span class="tag">How it works</span>
<h2>Effortless Resource Management in 3 Steps!</h2>
<ul style="list-style: none; padding-left: 0;">
<ol class="space-y-3">
<li style="margin-bottom: 15px;"><strong>Step 1:</strong> Choose the cluster(s) that need cleanup.</li>
<li style="margin-bottom: 15px;"><strong>Step 2:</strong> Specify the cleanup policies and parameters.</li>
<li style="margin-bottom: 15px;"><strong>Step 3:</strong> K8s Cleaner automatically executes the cleanup, optimizing resource usage.</li>
</ol>
</ul>
<a href="https://dev.to/gianlucam76/a-controller-to-identify-unused-and-unhealthy-kubernetes-resources-4fce" target="_blank" rel="noopener noreferrer" class="ud-main-btn">Learn More</a>
</div>
</div>
<div class="ud-about-image">
<img src="assets/images/about/k8scleanerYMLimage.png" alt="about-image" />
</div>
</div>
</div>
</section>
<!-- ====== About End ====== -->
<!-- ====== Testimonials Start ======
<section id="testimonials" class="ud-testimonials">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title mx-auto text-center">
<span>Adopters</span>
<h2>Trusted by Industry Leaders</h2>
<p>Discover how top organizations leverage K8s Cleaner to optimize their Kubernetes environments.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="ud-single-testimonial wow fadeInUp" data-wow-delay=".1s">
<div class="ud-testimonial-content">
<p>"K8s Cleaner has significantly improved our cluster performance by reducing unnecessary resource consumption."</p>
</div>
<div class="ud-testimonial-info">
<div class="ud-testimonial-image"><img src="assets/images/testimonials/company1_logo.png" alt="author" /></div>
<div class="ud-testimonial-meta">
<h4>Company A</h4>
<p><a href="https://company-a.com" target="_blank">Learn More</a></p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="ud-single-testimonial wow fadeInUp" data-wow-delay=".15s">
<div class="ud-testimonial-content">
<p>"With K8s Cleaner, we have automated our Kubernetes resource management and reduced downtime significantly."</p>
</div>
<div class="ud-testimonial-info">
<div class="ud-testimonial-image"><img src="assets/images/testimonials/company2_logo.png" alt="author" /></div>
<div class="ud-testimonial-meta">
<h4>Company B</h4>
<p><a href="https://company-b.com" target="_blank">Learn More</a></p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="ud-single-testimonial wow fadeInUp" data-wow-delay=".2s">
<div class="ud-testimonial-content">
<p>"K8s Cleaner simplifies our workflow by providing seamless resource cleanup options tailored to our needs."</p>
</div>
<div class="ud-testimonial-info">
<div class="ud-testimonial-image"><img src="assets/images/testimonials/company3_logo.png" alt="author" /></div>
<div class="ud-testimonial-meta">
<h4>Company C</h4>
<p><a href="https://company-c.com" target="_blank">Learn More</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ====== Testimonials End ====== -->
<!-- ====== Team Start ====== -->
<section id="team" class="ud-team">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title mx-auto text-center">
<span>Our Team</span>
<h2>Meet The Team Behind K8s Cleaner</h2>
<p>Dedicated professionals committed to delivering an exceptional Kubernetes resource management experience.</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-xl-4 col-lg-4 col-sm-6">
<div class="ud-single-team wow fadeInUp" data-wow-delay=".1s">
<div class="ud-team-image-wrapper">
<div class="ud-team-image"><img src="assets/images/team/Simone-Morellato.png"" alt="Simone Morellato" /></div>
<img src="assets/images/team/dotted-shape.svg" alt="shape" class="shape shape-1" />
</div>
<div class="ud-team-info">
<h5>Simone morellato</h5>
<h6>CMO</h6>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-4 col-sm-6">
<div class="ud-single-team wow fadeInUp" data-wow-delay=".15s">
<div class="ud-team-image-wrapper">
<div class="ud-team-image"><img src="assets/images/team/gianlucamarderte.png" alt="Gianluca Mardente" /></div>
<img src="assets/images/team/dotted-shape.svg" alt="shape" class="shape shape-1" />
</div>
<div class="ud-team-info">
<h5>Gianluca Mardente</h5>
<h6>Founder and CTO</h6>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-4 col-sm-6">
<div class="ud-single-team wow fadeInUp" data-wow-delay=".15s">
<div class="ud-team-image-wrapper">
<div class="ud-team-image"><img src="assets/images/team/Eleni-Grosdouli-sveltos2.png" alt="Eleni Grosdouli" /></div>
<img src="assets/images/team/dotted-shape.svg" alt="shape" class="shape shape-1" />
</div>
<div class="ud-team-info">
<h5>Eleni Grosdouli</h5>
<h6>Chief Customer Experience Officer</h6>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ====== Team End ====== -->
<!-- ====== Contact Start ====== -->
<section id="contact" class="ud-contact">
<div class="container">
<div class="row align-items-center">
<div class="col-xl-8 col-lg-7">
<div class="ud-contact-content-wrapper">
<div class="ud-contact-title">
<span>CONTACT US</span>
<h2>We'd Love to Hear From You!</h2>
</div>
<div class="ud-contact-info-wrapper">
<div class="ud-single-info">
<div class="ud-info-icon"><i class="lni lni-map-marker"></i></div>
<div class="ud-info-meta">
<h5>Our Location</h5>
<p>San Francisco, California</p>
</div>
</div>
<div class="ud-single-info">
<div class="ud-info-icon"><i class="lni lni-envelope"></i></div>
<div class="ud-info-meta">
<h5>Get in Touch</h5>
<p>Send us a message</p>
</div>
</div>
<div class="ud-single-info">
<div class="ud-info-icon">
<i class="lni lni-heart"></i>
</div>
<div class="ud-info-meta">
<h5>Support the Project</h5>
<a href="https://www.patreon.com/c/sveltos/membership" target="_blank" class="patreon-btn">
<img src="https://c5.patreon.com/external/logo/become_a_patron_button.png" alt="Become a Patron" style="height: 35px; margin-top: 8px;">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-5">
<div class="ud-contact-form-wrapper wow fadeInUp" data-wow-delay=".2s">
<h3 class="ud-contact-form-title">Send us a Message</h3>
<form action="https://formspree.io/f/mkgnbvwv" method="POST" class="ud-contact-form">
<div class="ud-form-group">
<label for="fullName">Full Name*</label>
<input type="text" name="fullName" placeholder="Your Name" required />
</div>
<div class="ud-form-group">
<label for="email">Email*</label>
<input type="email" name="email" placeholder="[email protected]" required />
</div>
<div class="ud-form-group">
<label for="phone">Phone*</label>
<input type="text" name="phone" placeholder="+1 234 567 8901" required />
</div>
<div class="ud-form-group">
<label for="message">Message*</label>
<textarea name="message" rows="1" placeholder="Type your message here" required></textarea>
</div>
<div class="ud-form-group mb-0">
<button type="submit" class="ud-main-btn">Send Message</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- ====== Contact End ====== -->
<!-- ====== Footer Start ====== -->
<footer class="ud-footer">
<div class="ud-footer-bottom">
<div class="container">
<div class="row">
<div class="col-md-8">
<ul class="ud-footer-bottom-left">
<li><a href="https://github.com/gianlucam76/k8s-cleaner">Contribute</a></li>
<li><a href="https://projectsveltos.slack.com/archives/C07H8L2EJBX">Join Slack</a></li>
<li><a href="https://twitter.com/projectsveltos">Follow Us on X</a></li>
<li> <a href="https://www.linkedin.com/company/projectsveltos">Follow Us on LinkedIn</a></li>
</ul>
</div>
<div class="col-md-4">
<p class="ud-footer-bottom-right">Made with ❤️ by the Sveltos Team</p>
</div>
</div>
</div>
</div>
</footer>
<!-- ====== Footer End ====== -->
<!-- ====== Back To Top Start ====== -->
<a href="javascript:void(0)" class="back-to-top"><i class="lni lni-chevron-up"></i></a>
<!-- ====== Back To Top End ====== -->
<!-- ====== All Javascript Files ====== -->
<script src="assets/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/wow.min.js"></script>
<script src="assets/js/main.js"></script>
<script>
// Smooth scroll for menu links
const pageLink = document.querySelectorAll(".ud-menu-scroll");
pageLink.forEach((elem) => {
elem.addEventListener("click", (e) => {
e.preventDefault();
document.querySelector(elem.getAttribute("href")).scrollIntoView({ behavior: "smooth", offsetTop: 1 - 60 });
});
});
// Section menu active function
function onScroll(event) {
const sections = document.querySelectorAll(".ud-menu-scroll");
const scrollPos = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop;
for (let i = 0; i < sections.length; i++) {
const currLink = sections[i];
const val = currLink.getAttribute("href");
const refElement = document.querySelector(val);
const scrollTopMinus = scrollPos + 73;
if (refElement.offsetTop <= scrollTopMinus && refElement.offsetTop + refElement.offsetHeight > scrollTopMinus) {
document.querySelector(".ud-menu-scroll").classList.remove("active");
currLink.classList.add("active");
} else {
currLink.classList.remove("active");
}
}
}
window.document.addEventListener("scroll", onScroll);
</script>
</body>
</html>