-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.xml
More file actions
4409 lines (3599 loc) · 234 KB
/
index.xml
File metadata and controls
4409 lines (3599 loc) · 234 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
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>DevOpsTales</title>
<link>https://devopstales.github.io/</link>
<description>Recent content on DevOpsTales</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Wed, 22 Apr 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://devopstales.github.io/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Kilo Code: Steering and Custom Agents</title>
<link>https://devopstales.github.io/ai/kilo-code-series-07-steering/</link>
<pubDate>Tue, 31 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/ai/kilo-code-series-07-steering/</guid>
<description>Structure is great, but every team has its own “tribal knowledge”—naming conventions, preferred libraries, and security requirements that aren’t always obvious to a general LLM.
</description>
<enclosure url="https://devopstales.github.io/img/kilocode.webp" length="908" type="image/png" />
</item>
<item>
<title>Accelerating Application Startup in Kubernetes with In-Place Pod Resize</title>
<link>https://devopstales.github.io/kubernetes/startup-cpu-boost-kubernetes/</link>
<pubDate>Mon, 30 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/startup-cpu-boost-kubernetes/</guid>
<description>Learn how to accelerate Java and other resource-heavy application startups in Kubernetes using In-Place Pod Resize and the Kube Startup CPU Boost controller—without permanent over-provisioning.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.webp" length="26282" type="image/png" />
</item>
<item>
<title>Kilo Code: Mastering Spec-Driven Development (SDD)</title>
<link>https://devopstales.github.io/ai/kilo-code-series-06-sdd/</link>
<pubDate>Mon, 30 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/ai/kilo-code-series-06-sdd/</guid>
<description>In our previous post, we explored Codebase Indexing and how Kilo Code builds a semantic map of your repository. Now, it’s time to use that power effectively.
</description>
<enclosure url="https://devopstales.github.io/img/kilocode.webp" length="908" type="image/png" />
</item>
<item>
<title>Kubernetes Egress Gateway Options with Istio Ingress/Egress</title>
<link>https://devopstales.github.io/kubernetes/istio-ingress-egress-gateway/</link>
<pubDate>Mon, 30 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/istio-ingress-egress-gateway/</guid>
<description>Istio provides a comprehensive service mesh solution with built-in ingress and egress gateway capabilities. This post explores how to leverage Istio’s gateway resources for controlling both inbound and outbound traffic in your Kubernetes cluster.
</description>
<enclosure url="https://devopstales.github.io/img/istio.webp" length="1924" type="image/png" />
</item>
<item>
<title>Kilo Code: Codebase Indexing with Nomic and Qdrant</title>
<link>https://devopstales.github.io/ai/kilo-code-series-05-indexing/</link>
<pubDate>Sun, 29 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/ai/kilo-code-series-05-indexing/</guid>
<description>In our previous post, we explored the different modes of Kilo Code. While these modes are powerful, their effectiveness depends on the quality of the context they can access.
</description>
<enclosure url="https://devopstales.github.io/img/kilocode.webp" length="908" type="image/png" />
</item>
<item>
<title>KubeVPN: Cloud-Native Development Environment for Kubernetes</title>
<link>https://devopstales.github.io/kubernetes/kubevpn-cloud-native-development/</link>
<pubDate>Sun, 29 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/kubevpn-cloud-native-development/</guid>
<description>Developing applications for Kubernetes often means constantly deploying code to remote clusters or mocking services locally. KubeVPN bridges this gap by connecting your local machine directly to your Kubernetes cluster network, enabling true cloud-native development without the deployment overhead.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.webp" length="26282" type="image/png" />
</item>
<item>
<title>Kilo Code: Understanding Modes and the Orchestrator</title>
<link>https://devopstales.github.io/ai/kilo-code-series-04-modes/</link>
<pubDate>Sat, 28 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/ai/kilo-code-series-04-modes/</guid>
<description>In our previous post, we unlocked massive power by integrating Qwen Code CLI. But with great power comes the need for great management.
</description>
<enclosure url="https://devopstales.github.io/img/kilocode.webp" length="908" type="image/png" />
</item>
<item>
<title>Kilo Code: Integrating with Qwen Code CLI</title>
<link>https://devopstales.github.io/ai/kilo-code-series-03-qwen-integration/</link>
<pubDate>Fri, 27 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/ai/kilo-code-series-03-qwen-integration/</guid>
<description>In our previous posts, we covered the basics of Kilo Code and how to get it installed on your machine. One of the most powerful features of Kilo Code is its ability to integrate with various AI providers.
</description>
<enclosure url="https://devopstales.github.io/img/kilocode.webp" length="908" type="image/png" />
</item>
<item>
<title>Nginx, F5 Acquisition, and the Rise of Angie: Why You Should Consider Switching</title>
<link>https://devopstales.github.io/devops/nginx-to-angie/</link>
<pubDate>Fri, 27 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/devops/nginx-to-angie/</guid>
<description>If you’ve been working with web servers and reverse proxies for the past decade, chances are you’ve used nginx. It’s been the backbone of countless web infrastructures, powering everything from small personal blogs to some of the busiest websites on the planet. But recent developments in the nginx ecosystem have led to an interesting fork called Angie — and it might be worth your attention.
In this post, I’ll walk through the history of nginx, what happened after the F5 acquisition, why Angie was created, and why you might want to consider making the switch.
</description>
<enclosure url="https://devopstales.github.io/img/ingress.webp" length="10196" type="image/png" />
</item>
<item>
<title>Kilo Code: Installation and Setup Guide</title>
<link>https://devopstales.github.io/ai/kilo-code-series-02-install/</link>
<pubDate>Thu, 26 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/ai/kilo-code-series-02-install/</guid>
<description>In our first post, we introduced the core concepts of Kilo Code and why it’s a game-changer for agentic software development. Now, it’s time to get your hands dirty.
</description>
<enclosure url="https://devopstales.github.io/img/kilocode.webp" length="908" type="image/png" />
</item>
<item>
<title>Kilo Code: The Future of Agentic Software Development</title>
<link>https://devopstales.github.io/ai/kilo-code-series-01-intro/</link>
<pubDate>Wed, 25 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/ai/kilo-code-series-01-intro/</guid>
<description>The world of AI coding is moving fast. We’ve seen the rise of simple autocomplete, then the transition to chat-based assistants, and now we are entering the era of Agentic AI.
</description>
<enclosure url="https://devopstales.github.io/img/kilocode.webp" length="908" type="image/png" />
</item>
<item>
<title>Proxmox Datacenter Manager: Complete Guide</title>
<link>https://devopstales.github.io/virtualization/proxmox-datacenter-manager/</link>
<pubDate>Wed, 25 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/virtualization/proxmox-datacenter-manager/</guid>
<description>Proxmox Datacenter Manager (PDM) is a centralized management platform for overseeing multiple Proxmox VE clusters and Proxmox Backup Server instances from a single interface. This guide covers installation, configuration, and best practices for managing your virtualization infrastructure at scale.
</description>
<enclosure url="https://devopstales.github.io/img/proxmox.webp" length="11936" type="image/png" />
</item>
<item>
<title>VSCode AI Coding Plugins Compared: GitHub Copilot vs Continue.dev vs Kilo Code</title>
<link>https://devopstales.github.io/ai/vscode-ai-coding-plugins-comparison/</link>
<pubDate>Tue, 24 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/ai/vscode-ai-coding-plugins-comparison/</guid>
<description>AI-powered coding assistants have become essential tools for modern developers. In this post, I’ll compare three popular VSCode extensions: GitHub Copilot, Continue.dev, and Kilo Code (kilo.io), helping you choose the right one for your workflow.
</description>
<enclosure url="https://devopstales.github.io/img/vscode.webp" length="3486" type="image/png" />
</item>
<item>
<title>AI IDE Core Concepts: Agents, Commands, Skills, Rules, Context, and Workflows</title>
<link>https://devopstales.github.io/ai/ai-ide-core-concepts/</link>
<pubDate>Sun, 22 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/ai/ai-ide-core-concepts/</guid>
<description>Modern AI-powered IDEs have evolved far beyond simple code completion. Today’s tools like Kilo Code, Cursor, Windsurf, and Google Antigravity introduce new paradigms: autonomous agents, reusable skills, markdown rules, semantic context, and structured workflows.
</description>
<enclosure url="https://devopstales.github.io/img/ai.webp" length="7458" type="image/png" />
</item>
<item>
<title>AI Software Development: Spec-Driven vs. Vibe Coding</title>
<link>https://devopstales.github.io/ai/ai-software-development-spec-vs-vibe/</link>
<pubDate>Sun, 22 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/ai/ai-software-development-spec-vs-vibe/</guid>
<description>The early days of AI coding were characterized by “vibe coding”—a process where developers would prompt an LLM, hope for a working snippet, and manually fix the hallucinations. While fast for simple tasks, this approach often falls apart in complex, multi-file projects where “context rot” and technical debt accumulate rapidly.
</description>
<enclosure url="https://devopstales.github.io/img/ai.webp" length="7458" type="image/png" />
</item>
<item>
<title>Use Multus CNI in Kubernetes</title>
<link>https://devopstales.github.io/kubernetes/multus/</link>
<pubDate>Sun, 22 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/multus/</guid>
<description>Multus CNI enables attaching multiple network interfaces to Kubernetes pods, essential for service mesh, security isolation, and high-performance networking. This updated guide for 2026 covers Multus 4.0+, Kubernetes 1.28+, and modern CNI plugins.
</description>
<enclosure url="https://devopstales.github.io/img/multus.webp" length="8712" type="image/png" />
</item>
<item>
<title>AI IDE Configuration Standards: From .vscode to AGENTS.md</title>
<link>https://devopstales.github.io/ai/ai-ide-configuration-standards/</link>
<pubDate>Sat, 21 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/ai/ai-ide-configuration-standards/</guid>
<description>As AI tools become more integrated into our development workflows, the way we configure our projects is changing. We’ve moved beyond simple .gitignore and .env files into a world where we need to provide specific “instructions” and “context” to our AI assistants.
</description>
<enclosure url="https://devopstales.github.io/img/vscode.webp" length="3486" type="image/png" />
</item>
<item>
<title>Building with AI Coding Agents: Best Practices for Agent Workflows</title>
<link>https://devopstales.github.io/ai/ai-coding-agents-workflows/</link>
<pubDate>Fri, 20 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/ai/ai-coding-agents-workflows/</guid>
<description>Over the past year, I’ve been working extensively with AI coding agents — intelligent assistants that go far beyond code autocompletion. These agents can plan, execute, and iterate on entire development tasks. They function like tireless pair programmers who never lose focus or context, dramatically increasing productivity when guided correctly.
</description>
<enclosure url="https://devopstales.github.io/img/ai.webp" length="7458" type="image/png" />
</item>
<item>
<title>The Best AI Coding IDEs in 2026: VS Code, Cursor, Windsurf, Antigravity, and More</title>
<link>https://devopstales.github.io/ai/ai-coding-ides-comparison/</link>
<pubDate>Thu, 19 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/ai/ai-coding-ides-comparison/</guid>
<description>The landscape of software development has shifted from “writing code with AI assistance” to “developing in AI-native environments.” While VS Code with GitHub Copilot remains the industry standard, a new breed of IDEs is challenging its dominance by integrating LLMs and autonomous agents into the very core of the editor.
</description>
<enclosure url="https://devopstales.github.io/img/vscode.webp" length="3486" type="image/png" />
</item>
<item>
<title>How to Backup and Restore Prometheus</title>
<link>https://devopstales.github.io/kubernetes/backup-and-retore-prometheus/</link>
<pubDate>Wed, 18 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/backup-and-retore-prometheus/</guid>
<description>Backing up Prometheus is critical for preserving your monitoring history and metrics data. This updated guide for 2026 covers modern backup strategies using the Prometheus Admin API, Velero, and volume snapshots in Kubernetes environments with prometheus-operator.
</description>
<enclosure url="https://devopstales.github.io/img/prometheus.webp" length="3398" type="image/png" />
</item>
<item>
<title>The Best AI Coding CLIs in 2026: Claude Code, Gemini CLI, OpenCode, and Qwen Code CLI</title>
<link>https://devopstales.github.io/ai/ai-coding-cli-comparison/</link>
<pubDate>Wed, 18 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/ai/ai-coding-cli-comparison/</guid>
<description>While AI-native IDEs like Cursor and Windsurf have taken the developer world by storm, a parallel revolution has been happening in the terminal. AI Coding CLIs (Command Line Interfaces) offer a different paradigm: they are lightweight, terminal-native, and often more “agentic” than their GUI counterparts.
</description>
<enclosure url="https://devopstales.github.io/img/ai.webp" length="7458" type="image/png" />
</item>
<item>
<title>Send pfSense Logs to Wazuh</title>
<link>https://devopstales.github.io/linux/wazuh-pfsense-syslog/</link>
<pubDate>Sun, 15 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/wazuh-pfsense-syslog/</guid>
<description>Centralizing pfSense firewall logs in Wazuh SIEM provides critical security visibility and threat detection capabilities. This updated guide for 2026 covers pfSense 2.7.x/2.8.x and Wazuh 4.8+ with proper syslog formatting and decoder configuration.
</description>
<enclosure url="https://devopstales.github.io//img/wazuh.webp" length="3636" type="image/png" />
</item>
<item>
<title>How to Configure Windows RADIUS and UniFi Controller</title>
<link>https://devopstales.github.io/windows/windows-server-radius/</link>
<pubDate>Thu, 12 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/windows/windows-server-radius/</guid>
<description>Implementing 802.1X wireless authentication with Windows NPS (Network Policy Server) and UniFi access points provides enterprise-grade security for your wireless network. This updated guide for 2026 covers Windows Server 2022/2025 and the latest UniFi Controller.
</description>
<enclosure url="https://devopstales.github.io/img/ps.webp" length="11180" type="image/png" />
</item>
<item>
<title>How to Install ESXi Nested Inside Proxmox VE</title>
<link>https://devopstales.github.io/virtualization/install-vmware-in-proxmox/</link>
<pubDate>Sun, 08 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/virtualization/install-vmware-in-proxmox/</guid>
<description>Running VMware ESXi nested inside Proxmox VE is perfect for testing vSphere features, learning VMware technologies, or building a homelab. This updated guide for 2026 covers Proxmox VE 8.x and VMware ESXi 8.0 U3 with the correct virtual hardware configuration.
</description>
<enclosure url="https://devopstales.github.io/img/vmware.webp" length="14404" type="image/png" />
</item>
<item>
<title>Kubernetes Certificate Rotation</title>
<link>https://devopstales.github.io/kubernetes/k8s-cert/</link>
<pubDate>Sun, 08 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-cert/</guid>
<description>In this post I will show you how you can rotate your Kubernetes Engine Certificates.
</description>
<enclosure url="https://devopstales.github.io/img/cert.webp" length="1986" type="image/png" />
</item>
<item>
<title>GitHub Actions: Basics</title>
<link>https://devopstales.github.io/devops/github-actions-basics/</link>
<pubDate>Sat, 07 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/devops/github-actions-basics/</guid>
<description>In this post I will show you how you can use GitHub Actions for CI/CD and pass artifacts between jobs.
</description>
<enclosure url="https://devopstales.github.io/img/github.webp" length="19998" type="image/png" />
</item>
<item>
<title>Best Practices for Keeping Kubernetes Clusters Secure</title>
<link>https://devopstales.github.io/kubernetes/k8s-security/</link>
<pubDate>Fri, 06 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-security/</guid>
<description>Kubernetes offers rich configuration options, but defaults are usually the least secure. Most sysadmins don’t know how to secure a Kubernetes cluster. So this is my Best Practice list for keeping Kubernetes Clusters Secure.
</description>
<enclosure url="https://devopstales.github.io/img/k8ssec.webp" length="8784" type="image/png" />
</item>
<item>
<title>Firewall Ports for AD Domain Join</title>
<link>https://devopstales.github.io/linux/pfsense-ad-join/</link>
<pubDate>Thu, 05 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/pfsense-ad-join/</guid>
<description>Joining clients to an Active Directory domain requires specific firewall ports to be open. This updated guide for 2026 covers the minimum and recommended ports for Windows 11/Server 2022+ domain joins, including pfSense firewall configuration examples.
</description>
<enclosure url="https://devopstales.github.io/img/pfsense.webp" length="37038" type="image/png" />
</item>
<item>
<title>What is RBAC in Kubernetes?</title>
<link>https://devopstales.github.io/kubernetes/k8s-rbac/</link>
<pubDate>Thu, 05 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-rbac/</guid>
<description>In this post I will show you how you can use RBAC in kubernetes.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.webp" length="26282" type="image/png" />
</item>
<item>
<title>Ceph Debugging on Proxmox: Essential Commands and Troubleshooting</title>
<link>https://devopstales.github.io/virtualization/proxmox-ceph-debugging/</link>
<pubDate>Wed, 04 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/virtualization/proxmox-ceph-debugging/</guid>
<description>When running Ceph on Proxmox, issues can arise at any layer of the storage stack. Knowing the right commands to diagnose and resolve problems is essential for maintaining a healthy cluster. This guide covers the most useful Ceph commands for debugging and troubleshooting on Proxmox.
</description>
<enclosure url="https://devopstales.github.io/img/proxmox.webp" length="11936" type="image/png" />
</item>
<item>
<title>Run Linux VM on macOS with Lima and Colima</title>
<link>https://devopstales.github.io/virtualization/lima-linux-vm-macos/</link>
<pubDate>Wed, 04 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/virtualization/lima-linux-vm-macos/</guid>
<description>Running Linux virtual machines on macOS has become essential for developers working with containers, Kubernetes, and cloud-native technologies. Lima (Linux on macOS) and Colima (Containers on Lima) provide an elegant solution for running Linux workloads on Mac with minimal overhead and maximum compatibility.
</description>
<enclosure url="https://devopstales.github.io/img/colima.webp" length="9744" type="image/png" />
</item>
<item>
<title>Run Podman on macOS with Lima</title>
<link>https://devopstales.github.io/virtualization/lima-podman-macos/</link>
<pubDate>Wed, 04 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/virtualization/lima-podman-macos/</guid>
<description>Running Podman on macOS through Lima provides a lightweight, Docker-compatible container runtime without the overhead of Docker Desktop. This setup is ideal for developers who want a rootless, daemonless container experience on Mac with minimal resource consumption.
</description>
<enclosure url="https://devopstales.github.io/img/colima.webp" length="9744" type="image/png" />
</item>
<item>
<title>Best Kubernetes Dashboards of 2026</title>
<link>https://devopstales.github.io/kubernetes/best-k8s-dashboards-2026/</link>
<pubDate>Mon, 02 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/best-k8s-dashboards-2026/</guid>
<description>With the official Kubernetes Dashboard being deprecated and moved to the retired projects, finding a reliable, feature-rich dashboard for your Kubernetes clusters has become more important than ever. In 2026, several excellent alternatives have emerged. This post reviews the top Kubernetes dashboards available today.
</description>
<enclosure url="https://devopstales.github.io/img/k8ssec.webp" length="8784" type="image/png" />
</item>
<item>
<title>Migrating to FluxCD Operator with UI</title>
<link>https://devopstales.github.io/kubernetes/fluxcd-operator-migration-gitlab/</link>
<pubDate>Mon, 02 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/fluxcd-operator-migration-gitlab/</guid>
<description>FluxCD Operator brings a simplified management experience and a native web UI for monitoring your GitOps workflows. This guide walks you through migrating an existing FluxCD installation to the Operator pattern with UI enabled, while maintaining GitLab as your Git source.
</description>
<enclosure url="https://devopstales.github.io/img/flux.webp" length="12178" type="image/png" />
</item>
<item>
<title>Kubernetes Swap and etcd Stability: Preventing Control Plane Hangs</title>
<link>https://devopstales.github.io/kubernetes/k8s-swap-etcd-stability/</link>
<pubDate>Fri, 27 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-swap-etcd-stability/</guid>
<description>When enabling swap on Kubernetes nodes, you might encounter a critical issue where misbehaving containers don’t get killed automatically. When this affects etcd, the API server generating excessive load and consuming all available resources. This post explains the problem and provides two solutions.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.webp" length="26282" type="image/png" />
</item>
<item>
<title>Kubernetes DMZ Ingress with HAProxy and BGP: External Mode Without Cilium External Workload</title>
<link>https://devopstales.github.io/kubernetes/k8s-dmz-bgp-external-haproxy/</link>
<pubDate>Thu, 26 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-dmz-bgp-external-haproxy/</guid>
<description>Learn how to deploy HAProxy Ingress Controller on AlmaLinux in a DMZ network outside your Kubernetes cluster—without Cilium’s deprecated external workload mode. This guide covers BGP peering with BIRD, Cilium’s Pod CIDR export, firewalld configuration, and production-ready setup for secure ingress traffic isolation.
</description>
<enclosure url="https://devopstales.github.io/img/k8ssec.webp" length="8784" type="image/png" />
</item>
<item>
<title>Implementing Mutual TLS (mTLS) with Traefik Ingress Controller: Per-Ingress Configuration</title>
<link>https://devopstales.github.io/kubernetes/mtls-traefik-ingress/</link>
<pubDate>Wed, 25 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/mtls-traefik-ingress/</guid>
<description>Mutual TLS (mTLS) adds a critical security layer to your Kubernetes applications by requiring clients to authenticate with certificates—not just passwords or tokens. This guide covers per-ingress mTLS configuration with Traefik Ingress Controller, using Traefik’s native TLSOption CRD for fine-grained control over which services require client certificate authentication.
</description>
<enclosure url="https://devopstales.github.io/img/ingress.webp" length="10196" type="image/png" />
</item>
<item>
<title>Implementing Mutual TLS (mTLS) with NGINX Ingress Controller: Per-Ingress Configuration</title>
<link>https://devopstales.github.io/kubernetes/mtls-nginx-ingress/</link>
<pubDate>Tue, 24 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/mtls-nginx-ingress/</guid>
<description>Mutual TLS (mTLS) adds a critical security layer to your Kubernetes applications by requiring clients to authenticate with certificates—not just passwords or tokens. This guide covers per-ingress mTLS configuration with NGINX Ingress Controller, giving you fine-grained control over which services require client certificate authentication.
</description>
<enclosure url="https://devopstales.github.io/img/ingress.webp" length="10196" type="image/png" />
</item>
<item>
<title>Migrating from NGINX Ingress Controller to Traefik: A Step-by-Step Guide</title>
<link>https://devopstales.github.io/kubernetes/nginx-to-traefic-ingress-migration/</link>
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/nginx-to-traefic-ingress-migration/</guid>
<description>The Kubernetes community announced the retirement of Ingress NGINX with best-effort maintenance ending March 2026. This guide walks you through a safe, tested migration path to Traefik Proxy—with code examples, annotation mappings, and production tips.
</description>
<enclosure url="https://devopstales.github.io/img/ingress.webp" length="10196" type="image/png" />
</item>
<item>
<title>Migrating from NGINX Ingress Controller to HAProxy: A Step-by-Step Guide</title>
<link>https://devopstales.github.io/kubernetes/nginx-to-haproxy-ingress-migration/</link>
<pubDate>Sun, 22 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/nginx-to-haproxy-ingress-migration/</guid>
<description>The Kubernetes community announced the retirement of Ingress NGINX with best-effort maintenance ending March 2026. This guide walks you through a safe, tested migration path to HAProxy Kubernetes Ingress Controller—with code examples, annotation mappings, and production tips.
</description>
<enclosure url="https://devopstales.github.io/img/ingress.webp" length="10196" type="image/png" />
</item>
<item>
<title>Why Kubernetes Pods See Host Resources (And How to Fix It)</title>
<link>https://devopstales.github.io/kubernetes/kubernetes-resource-visibility/</link>
<pubDate>Thu, 15 May 2025 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/kubernetes-resource-visibility/</guid>
<description>When you check resource usage inside a Kubernetes pod, you might be surprised to see the full host machine’s resources - even when you’ve set strict limits. Let’s explore why this happens and how to fix it.
</description>
<enclosure url="https://devopstales.github.io/img/k8ssec.webp" length="8784" type="image/png" />
</item>
<item>
<title>Kubernetes Cluster API: a step by stap guide</title>
<link>https://devopstales.github.io/kubernetes/cluster-api/</link>
<pubDate>Sun, 06 Apr 2025 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/cluster-api/</guid>
<description>In this post I will show you how you can install and manage a Kubernetes cluster with Cluster API.
</description>
<enclosure url="https://devopstales.github.io/img/clusterapi.webp" length="29628" type="image/png" />
</item>
<item>
<title>Automatic Kubernetes Certificate Renewal</title>
<link>https://devopstales.github.io/kubernetes/automatic-k8s-certificate-renewal/</link>
<pubDate>Fri, 20 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/automatic-k8s-certificate-renewal/</guid>
<description>In this post I will show you how you can automate the Kubernetes Certificate renewal.
</description>
<enclosure url="https://devopstales.github.io/img/cert.webp" length="1986" type="image/png" />
</item>
<item>
<title>Known Issues of Azure Key Vault AKS integration and resolutions</title>
<link>https://devopstales.github.io/cloud/aks-azure-key-vault-known-issues-and-resolutions/</link>
<pubDate>Wed, 27 Nov 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/cloud/aks-azure-key-vault-known-issues-and-resolutions/</guid>
<description>In this Post I will show you the know issues of Azure Key Value and AKS intgrations. Then I will show you how to adress them.
</description>
<enclosure url="https://devopstales.github.io/img/aks2.webp" length="23990" type="image/png" />
</item>
<item>
<title>Hierarchical namespace controller</title>
<link>https://devopstales.github.io/kubernetes/k8s-hierarchical-namespace-controller/</link>
<pubDate>Fri, 25 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-hierarchical-namespace-controller/</guid>
<description>In this Post I will show you how to install Hierarchical namespace controller (HNC) on k8s.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.webp" length="26282" type="image/png" />
</item>
<item>
<title>Custom Kube-Scheduler</title>
<link>https://devopstales.github.io/kubernetes/k8s-custom-kube-scheduler/</link>
<pubDate>Thu, 24 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-custom-kube-scheduler/</guid>
<description>In this post I will show you how you can create a custom Kube-Scheduler to chaneg scheduling options.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.webp" length="26282" type="image/png" />
</item>
<item>
<title>Kube-Scheduler Profile</title>
<link>https://devopstales.github.io/kubernetes/k8s-kube-scheduler-profile/</link>
<pubDate>Wed, 23 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-kube-scheduler-profile/</guid>
<description>In this post I will show you how you can create a custom Kube-Scheduler profile to chaneg scheduling options.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.webp" length="26282" type="image/png" />
</item>
<item>
<title>Move Windows Certificate Authority to another server</title>
<link>https://devopstales.github.io/windows/move-certificate-authority-to-anoter-server/</link>
<pubDate>Tue, 22 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/windows/move-certificate-authority-to-anoter-server/</guid>
<description>In this post I will show how to move Windows Certificate Authority role to another Server.
</description>
<enclosure url="https://devopstales.github.io/img/ps.webp" length="11180" type="image/png" />
</item>
<item>
<title>Configure custom SSL and DNS on AKS Ingress Controller</title>
<link>https://devopstales.github.io/cloud/custom-ssl-and-dns-on-aks-ingress-controller/</link>
<pubDate>Fri, 19 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/cloud/custom-ssl-and-dns-on-aks-ingress-controller/</guid>
<description>In this pos I will show you how you can configure custom SSL and DNS on Nginx Ingress Controlle to AKS (Azure Kubernetes Service) Cluster.
</description>
<enclosure url="https://devopstales.github.io/img/aks2.webp" length="23990" type="image/png" />
</item>
<item>
<title>Use Azure Private DNS with AKS Ingress Controller</title>
<link>https://devopstales.github.io/cloud/azure-private-dns-with-aks-ingress-controller/</link>
<pubDate>Wed, 17 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/cloud/azure-private-dns-with-aks-ingress-controller/</guid>
<description>In this pos I will show you how you can use Azure Private DNS with app routing operator Ingress Controller on AKS (Azure Kubernetes Service) Cluster.
</description>
<enclosure url="https://devopstales.github.io/img/aks2.webp" length="23990" type="image/png" />
</item>
<item>
<title>Install Nginx Ingress Controller to AKS with application routing add-on</title>
<link>https://devopstales.github.io/cloud/aks-ingress-controller-v2/</link>
<pubDate>Mon, 15 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/cloud/aks-ingress-controller-v2/</guid>
<description>In this pos I will show you how you can install Inginx Ingress Controller to a AKS (Azure Kubernetes Service) Cluster with aks-app-routing-operator.
</description>
<enclosure url="https://devopstales.github.io/img/aks2.webp" length="23990" type="image/png" />
</item>
<item>
<title>Kubernetes with external Ingress Controller with Haproxy and VXLAN</title>
<link>https://devopstales.github.io/kubernetes/k8s-dmz-vxlan/</link>
<pubDate>Wed, 10 Apr 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-dmz-vxlan/</guid>
<description>In this post I will show you how to nstall HAProxy Igress Controller on a separate VM instad of running it in the Kubernetes cluster as a pod. For this I will use cilium external-workload option.
</description>
<enclosure url="https://devopstales.github.io/img/k8ssec.webp" length="8784" type="image/png" />
</item>
<item>
<title>Kubernetes with external Ingress Controller with Haproxy and BGP</title>
<link>https://devopstales.github.io/kubernetes/k8s-dmz-bgp/</link>
<pubDate>Sun, 03 Mar 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-dmz-bgp/</guid>
<description>In this post I will show you how to nstall HAProxy Igress Controller on a separate VM instad of running it in the Kubernetes cluster as a pod. For this I will use cilium BGP pod CIDR export option.
</description>
<enclosure url="https://devopstales.github.io/img/k8ssec.webp" length="8784" type="image/png" />
</item>
<item>
<title>Integrating OpenShift 4 with External Grafana</title>
<link>https://devopstales.github.io/kubernetes/openshift4-monitoringw-with-external-grafana/</link>
<pubDate>Tue, 20 Feb 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/openshift4-monitoringw-with-external-grafana/</guid>
<description>In this Post I will show you how you how you can integrate an external Grafana with OpenShift 4 Prometheus.
</description>
<enclosure url="https://devopstales.github.io/img/openshift.webp" length="20976" type="image/png" />
</item>
<item>
<title>RKE2 With MetalLB and NGINX Ingress Controller</title>
<link>https://devopstales.github.io/kubernetes/rke2-ingress-loadbalancer/</link>
<pubDate>Thu, 15 Feb 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/rke2-ingress-loadbalancer/</guid>
<description>In this Post I will show you how to Configure MetalLB to provide a bare metal Load Balancer for NGINX Ingress Controller.
</description>
<enclosure url="https://devopstales.github.io/img/metallb2.webp" length="6458" type="image/png" />
</item>
<item>
<title>Github Self-Hosted Runners on Kubernetes with Actions Runner Controller</title>
<link>https://devopstales.github.io/devops/github-self-hosted-runners-on-kubernetes/</link>
<pubDate>Mon, 29 Jan 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/devops/github-self-hosted-runners-on-kubernetes/</guid>
<description>In this post I will show you how you can set up self-hosted GitHub action runner in Kubernetes with Actions Runner Controller.
</description>
<enclosure url="https://devopstales.github.io/img/github.webp" length="19998" type="image/png" />
</item>
<item>
<title>Kubernetes Secure Install</title>
<link>https://devopstales.github.io/kubernetes/k8s-secure-install/</link>
<pubDate>Sat, 20 Jan 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-secure-install/</guid>
<description>In this post I will show you how to install a Kubernetes cluster in a secure way with.
</description>
<enclosure url="https://devopstales.github.io/img/k8ssec.webp" length="8784" type="image/png" />
</item>
<item>
<title>Kubernetes Container Checkpoints</title>
<link>https://devopstales.github.io/kubernetes/k8s-checkpointing/</link>
<pubDate>Sun, 14 Jan 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-checkpointing/</guid>
<description>In this post I will show you how to use Container Checkpoints.
</description>
<enclosure url="https://devopstales.github.io/img/crio.webp" length="16310" type="image/png" />
</item>
<item>
<title>CNI-Genie: network separation with multiple CNI</title>
<link>https://devopstales.github.io/kubernetes/cni-genie/</link>
<pubDate>Fri, 27 Oct 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/cni-genie/</guid>
<description>In this post I will show you how you can use CNI-Genie for network separation with multiple CNI.
</description>
<enclosure url="https://devopstales.github.io/img/cni.webp" length="34296" type="image/png" />
</item>
<item>
<title>Proxmox: Behind HAproxy Load Balancer</title>
<link>https://devopstales.github.io/linux/proxmox-haproxy-lb/</link>
<pubDate>Thu, 05 Oct 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/proxmox-haproxy-lb/</guid>
<description>In thist post I will show you how to configure HAproxy to Load Balancer between the Proxmox VE Web interfaces and get a single hostname for your cluster.
</description>
<enclosure url="https://devopstales.github.io/img/proxmox.webp" length="11936" type="image/png" />
</item>
<item>
<title>Install kubernetes with kubeadm and enable swap</title>
<link>https://devopstales.github.io/kubernetes/k8s-install-with-swap/</link>
<pubDate>Fri, 22 Sep 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-install-with-swap/</guid>
<description>Kubeadm is a tool that helps you bootstrap a simple Kubernetes cluster and simplifies the deployment process. In this post I will use kubeadm to install swap enabled kubernetes.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.webp" length="26282" type="image/png" />
</item>
<item>
<title>Configurre network wit nmstate operator</title>
<link>https://devopstales.github.io/kubernetes/multus-nmstate/</link>
<pubDate>Thu, 14 Sep 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/multus-nmstate/</guid>
<description>In this post I will show you how you can use nmstate operator to manage your network configurations on a Kubernetes host.
</description>
<enclosure url="https://devopstales.github.io/img/nmstate.webp" length="5356" type="image/png" />
</item>
<item>
<title>Install Ingress to GKE</title>
<link>https://devopstales.github.io/cloud/gke-ingress-controller/</link>
<pubDate>Wed, 06 Sep 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/cloud/gke-ingress-controller/</guid>
<description>In this pos I will show you how you can Install Ingress to GKE (Google Kubernetes Engine) Cluster.
</description>
<enclosure url="https://devopstales.github.io/img/gcp.webp" length="3386" type="image/png" />
</item>
<item>
<title>Wazuh SIEM Authentication</title>
<link>https://devopstales.github.io/linux/wazuh-authentication/</link>
<pubDate>Tue, 05 Sep 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/wazuh-authentication/</guid>
<description>In this post I will show you how to configure LDAP Authentication in a Wazuh Open Source SIEM solution.
</description>
<enclosure url="https://devopstales.github.io//img/wazuh.webp" length="3636" type="image/png" />
</item>
<item>
<title>Install Wazuh SIEM</title>
<link>https://devopstales.github.io/linux/wazuh-siem/</link>
<pubDate>Fri, 01 Sep 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/wazuh-siem/</guid>
<description>In this post I will show you how to install and configure the Wazuh Open Source SIEM solution.
</description>
<enclosure url="https://devopstales.github.io//img/wazuh.webp" length="3636" type="image/png" />
</item>
<item>
<title>Multicluster Kubernetes with Rancher Submariner Cluster Mesh</title>
<link>https://devopstales.github.io/kubernetes/cluster-mesh-with-submariner/</link>
<pubDate>Wed, 23 Aug 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/cluster-mesh-with-submariner/</guid>
<description>In this tutorial I will show you how to install Rancher Submariner on multiple Kubernetes clusters and connect those clusters with Cluster Mesh.
</description>
<enclosure url="https://devopstales.github.io/img/submariner.webp" length="1774" type="image/png" />
</item>
<item>
<title>Multicluster Kubernetes with Skupper Cluster Mesh</title>
<link>https://devopstales.github.io/kubernetes/cluster-mesh-with-skupper/</link>
<pubDate>Sat, 12 Aug 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/cluster-mesh-with-skupper/</guid>
<description>In this tutorial I will show you how to install skupper on multiple Kubernetes clusters and connect those clusters with Cluster Mesh.
</description>
<enclosure url="https://devopstales.github.io/img/skupper.webp" length="6204" type="image/png" />
</item>
<item>
<title>Multicluster Kubernetes with Linkerd Cluster Mesh</title>
<link>https://devopstales.github.io/kubernetes/cluster-mesh-with-linkerd/</link>
<pubDate>Sun, 06 Aug 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/cluster-mesh-with-linkerd/</guid>
<description>In this tutorial I will show you how to install linkerd on multiple Kubernetes clusters and connect those clusters with Cluster Mesh.
</description>
<enclosure url="https://devopstales.github.io/img/linkerd.webp" length="8168" type="image/png" />
</item>
<item>
<title>Kubernetes Multicluster with Cilium Cluster Mesh</title>
<link>https://devopstales.github.io/kubernetes/cluster-mesh-with-cilium/</link>
<pubDate>Sat, 15 Jul 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/cluster-mesh-with-cilium/</guid>
<description>In this tutorial I will show you how to install Cilium on multiple Kubernetes clusters and connect those clusters with Cluster Mesh.
</description>
<enclosure url="https://devopstales.github.io/img/cilium.webp" length="10382" type="image/png" />
</item>
<item>
<title>Troubleshooting Kubernetes: API error at resource listing</title>
<link>https://devopstales.github.io/kubernetes/debug-couldnt-get-resource-list/</link>
<pubDate>Mon, 10 Jul 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/debug-couldnt-get-resource-list/</guid>
<description>I this post I will show you how to troubleshoot your Kubernetes cluster when you get an API error at resource listing.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.webp" length="26282" type="image/png" />
</item>
<item>
<title>OKD OpenShift 4 Monitoring</title>
<link>https://devopstales.github.io/kubernetes/openshift4-monitoring/</link>
<pubDate>Wed, 14 Jun 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/openshift4-monitoring/</guid>
<description>In this Post I will show you how you can use the enbeddid Prometheus monitoring system in OpenShift 4 to monitor your workload applications.
</description>
<enclosure url="https://devopstales.github.io/img/openshift.webp" length="20976" type="image/png" />
</item>
<item>
<title>How to Migrate Persistent Volumes on Kubernetes Easily?</title>
<link>https://devopstales.github.io/kubernetes/k8s-migrate-pv/</link>
<pubDate>Wed, 31 May 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-migrate-pv/</guid>
<description>In this post I will show you how can you use migrate your data from one PV to another.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.webp" length="26282" type="image/png" />
</item>
<item>
<title>Kubernetes CephFS volume with CSI driver</title>
<link>https://devopstales.github.io/kubernetes/k8s-cephfs-storage-with-csi-driver/</link>
<pubDate>Tue, 30 May 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-cephfs-storage-with-csi-driver/</guid>
<description>In this post I will show you how can you use CephFS with CSI driver for persistent storage on Kubernetes.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.webp" length="26282" type="image/png" />
</item>
<item>
<title>Automatic rolling of Pods due to configuration changes</title>
<link>https://devopstales.github.io/kubernetes/k8s-rolling-upgrade/</link>
<pubDate>Mon, 29 May 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-rolling-upgrade/</guid>
<description>In this post I will show you how you can for pod upgrade at config changes in helm charts.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.webp" length="26282" type="image/png" />
</item>
<item>
<title>Kubernetes Rolling Update Configuration</title>
<link>https://devopstales.github.io/kubernetes/k8s-rolling-pods-config-changes/</link>
<pubDate>Thu, 25 May 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-rolling-pods-config-changes/</guid>
<description>In this post I will show you how you can influence the Deployment controller to perform a rolling upgrade.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.webp" length="26282" type="image/png" />
</item>
<item>
<title>Proxmox reload ifupdown2 network config from cli</title>
<link>https://devopstales.github.io/linux/proxmox-reload-network/</link>
<pubDate>Mon, 22 May 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/proxmox-reload-network/</guid>
<description>The correct way to remove nod from proxmox cluster.
</description>
<enclosure url="https://devopstales.github.io/img/proxmox.webp" length="11936" type="image/png" />
</item>
<item>
<title>Create VM in Azure with Terraform</title>
<link>https://devopstales.github.io/cloud/azure-terraform/</link>
<pubDate>Wed, 03 May 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/cloud/azure-terraform/</guid>
<description>In this post I will show you how how you can create a VM in Azure with Terraform.
</description>
<enclosure url="https://devopstales.github.io/img/terraform.webp" length="10098" type="image/png" />
</item>
<item>
<title>Create Proxmox VM with Terraform</title>
<link>https://devopstales.github.io/cloud/proxmox-terraform/</link>
<pubDate>Thu, 20 Apr 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/cloud/proxmox-terraform/</guid>
<description>In this post I will show you how how you can create a Proxmox VMs with Terraform.
</description>
<enclosure url="https://devopstales.github.io/img/terraform.webp" length="10098" type="image/png" />
</item>
<item>
<title>Influencing Kubernetes Scheduler Decisions</title>
<link>https://devopstales.github.io/kubernetes/k8s-pod-locations/</link>
<pubDate>Mon, 10 Apr 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-pod-locations/</guid>
<description>In this post I will show you how you can influence the Kubernetes Scheduler where to schedule a pod.
</description>
<enclosure url="https://devopstales.github.io/img/k8snet.webp" length="12350" type="image/png" />
</item>
<item>
<title>kubedash 1.0</title>
<link>https://devopstales.github.io/kubernetes/kubedash-1.0/</link>
<pubDate>Mon, 20 Mar 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/kubedash-1.0/</guid>
<description>Today I am happy to announce the release of KubeDash 1.0. This blog post focuses on the functionality provided by the KubeDash 1.0.
</description>
<enclosure url="https://devopstales.github.io/img/devopstales.webp" length="11306" type="image/png" />
</item>
<item>
<title>Store your ssh keys in keepassxc</title>
<link>https://devopstales.github.io/linux/ssh-credential-in-keepassxc/</link>
<pubDate>Wed, 15 Mar 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/ssh-credential-in-keepassxc/</guid>
<description>In this post I will show you how to use KeePassXC to store your ssh credentials.
</description>
<enclosure url="https://devopstales.github.io/img/keepassxc.webp" length="9058" type="image/png" />
</item>
<item>
<title>Store docker credentials in keepasscx</title>
<link>https://devopstales.github.io/linux/docker-credential-in-keepassxc/</link>
<pubDate>Fri, 10 Mar 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/docker-credential-in-keepassxc/</guid>
<description>In this post I will show you how to use KeePassXC to store your docker credentials on Linux.
</description>
<enclosure url="https://devopstales.github.io/img/keepassxc.webp" length="9058" type="image/png" />
</item>
<item>
<title>Azure Key Vault AKS integration with CSI Driver</title>
<link>https://devopstales.github.io/cloud/aks-azure-key-vault-csi/</link>
<pubDate>Wed, 08 Mar 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/cloud/aks-azure-key-vault-csi/</guid>
<description>In this Post I will show you how you can use CSI Driver to mount secrets from Azure Key Vault to AKS.
</description>
<enclosure url="https://devopstales.github.io/img/aks2.webp" length="23990" type="image/png" />
</item>
<item>
<title>Azure Key Vault AKS integration with akv2k8s</title>
<link>https://devopstales.github.io/cloud/aks-azure-key-vault-akv2k8s/</link>
<pubDate>Sun, 05 Mar 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/cloud/aks-azure-key-vault-akv2k8s/</guid>
<description>In this Post I will show you how you can use akv2k8s to synchronize secrets from Azure Key Vault to AKS.
</description>
<enclosure url="https://devopstales.github.io/img/aks2.webp" length="23990" type="image/png" />
</item>
<item>
<title>OKD OpenShift 4: Service Serving Certificate</title>
<link>https://devopstales.github.io/kubernetes/openshift4-service-serving-certificate/</link>
<pubDate>Sat, 25 Feb 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/openshift4-service-serving-certificate/</guid>
<description>In this Post I will show you how you can use Service Serving Certificate on OpenShift4.
</description>
<enclosure url="https://devopstales.github.io/img/openshift.webp" length="20976" type="image/png" />
</item>
<item>
<title>GitLab CI: How to Build Docker Images in Kubernetes</title>
<link>https://devopstales.github.io/devops/gitlab-ci-docker-bild-k8s/</link>
<pubDate>Fri, 10 Feb 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/devops/gitlab-ci-docker-bild-k8s/</guid>
<description>One of the most common use case is to build a Docker image with Gitlab. In a previous post we used dedicated docker runners for this job. But howe can we build images in a Kubernetes runner? In this post we well se this.
</description>
<enclosure url="https://devopstales.github.io/img/gitlab.webp" length="2678" type="image/png" />
</item>
<item>
<title>GitLab CI: How to Build Docker Images in Docker</title>
<link>https://devopstales.github.io/devops/gitlab-ci-docker-bild/</link>
<pubDate>Mon, 06 Feb 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/devops/gitlab-ci-docker-bild/</guid>
<description>One of the most common use case is to build a Docker image with Gitlab. In this post I will show you how to set up Docker builds in CI.
</description>
<enclosure url="https://devopstales.github.io/img/gitlab.webp" length="2678" type="image/png" />
</item>
<item>
<title>Understand OKD OpenShift 4 Buildconfig Configurations</title>
<link>https://devopstales.github.io/kubernetes/openshift4-buildconfig/</link>
<pubDate>Wed, 25 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/openshift4-buildconfig/</guid>
<description>In this Post I will show you how you can install rad hat openshift pipelines (Tekton) on OpenShift4.
</description>
<enclosure url="https://devopstales.github.io/img/openshift.webp" length="20976" type="image/png" />
</item>
<item>
<title>Use Cilium BGP integration with OPNsense</title>
<link>https://devopstales.github.io/kubernetes/cilium-opnsense-bgp-v2/</link>
<pubDate>Wed, 25 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/cilium-opnsense-bgp-v2/</guid>
<description>In this tutorial I will show you how to install Cilium with BGP integration for Kubernetes.
</description>
<enclosure url="https://devopstales.github.io/img/cilium.webp" length="10382" type="image/png" />
</item>
<item>
<title>Configuringure OKD OpenShift 4 registry for bare metal</title>
<link>https://devopstales.github.io/kubernetes/openshift4-registry/</link>
<pubDate>Mon, 23 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/openshift4-registry/</guid>
<description>In this Post I will show you how you can configure the enbedded rad hat quay docker registry in Openshift.
</description>
<enclosure url="https://devopstales.github.io/img/openshift.webp" length="20976" type="image/png" />
</item>