-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.xml
3912 lines (3201 loc) · 195 KB
/
index.xml
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>Fri, 25 Oct 2024 00:00:00 +0000</lastBuildDate><atom:link href="https://devopstales.github.io/index.xml" rel="self" type="application/rss+xml" />
<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.png" length="24573" 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.png" length="24573" type="image/png" />
</item>
<item>
<title>Kube-Schedulerrofile</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.png" length="24573" 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.png" length="15945" type="image/png" />
</item>
<item>
<title>Send Pfsense logs to Wazuh</title>
<link>https://devopstales.github.io/linux/wazuh-pfsense-syslog/</link>
<pubDate>Tue, 10 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/wazuh-pfsense-syslog/</guid>
<description>In this post I will show you how to send PFSense logs to Wazuh SIEM server.
</description>
<enclosure url="https://devopstales.github.io//img/wazuh.png" length="7584" 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="11182" 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="11182" 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="11182" 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.png" length="17050" 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.png" length="17050" 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.png" length="11105" 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.png" length="18327" 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.png" length="8640" 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.png" length="17050" 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.png" length="21604" 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.png" length="28144" 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.jpg" length="35876" 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.png" length="24573" 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.png" length="2547" 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.png" length="20140" 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.png" length="7584" 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.png" length="7584" 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.png" length="4320" 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.png" length="6889" 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.png" length="12208" 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.jpg" length="38849" 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.png" length="24573" 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.png" length="11105" 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.png" length="24573" 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.png" length="24573" 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.png" length="24573" 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.png" length="24573" 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.jpg" length="35876" 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.png" length="49766" 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.png" length="49766" 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.png" length="8807" 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.png" length="13075" 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.png" length="37726" 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.png" length="37726" 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="11182" 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="11182" 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.png" length="11105" 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.png" length="2891" 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.png" length="2891" type="image/png" />
</item>
<item>
<title>GitHub Actions: Basics</title>
<link>https://devopstales.github.io/devops/github-actions-basics/</link>
<pubDate>Sun, 29 Jan 2023 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 pass artifacts between in gitlab CI.
</description>
<enclosure url="https://devopstales.github.io/img/github.png" length="8640" 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.png" length="11105" 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.jpg" length="38849" 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.png" length="11105" type="image/png" />
</item>
<item>
<title>Deploying Tekton on OpenShift 4</title>
<link>https://devopstales.github.io/kubernetes/openshift4-tekton/</link>
<pubDate>Fri, 20 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/openshift4-tekton/</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.png" length="11105" type="image/png" />
</item>
<item>
<title>GitLab CI: artifacts management</title>
<link>https://devopstales.github.io/devops/gitlab-ci-artifacts/</link>
<pubDate>Mon, 16 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/devops/gitlab-ci-artifacts/</guid>
<description>In this post I will show you how you can pass artifacts between in gitlab CI.
</description>
<enclosure url="https://devopstales.github.io/img/gitlab.png" length="2891" type="image/png" />
</item>
<item>
<title>Introduction to GitLab CI/CD</title>
<link>https://devopstales.github.io/devops/introduction-to-gitlab-ci-cd/</link>
<pubDate>Sun, 15 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/devops/introduction-to-gitlab-ci-cd/</guid>
<description>In this post I will show you the basics of using gitlab as a Continuous Integration and Continuous Deployments (CI/CD) tool.
</description>
<enclosure url="https://devopstales.github.io/img/gitlab.png" length="2891" type="image/png" />
</item>
<item>
<title>What is DevOps?</title>
<link>https://devopstales.github.io/devops/what-is-devops/</link>
<pubDate>Sat, 14 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/devops/what-is-devops/</guid>
<description>This blog post is the first post of my new series where we will learn the use of the most popular CI/CD tools. But first we will understand tha philosophy behind this tools.
</description>
<enclosure url="https://devopstales.github.io/img/devops.svg" length="1772" type="image/png" />
</item>
<item>
<title>Proxmox: Customize Web UI with dark theme</title>
<link>https://devopstales.github.io/linux/proxmox-dark-theme/</link>
<pubDate>Wed, 11 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/proxmox-dark-theme/</guid>
<description>In thist post I will show you how to customize Proxmox VE Web UI with dark theme.
</description>
<enclosure url="https://devopstales.github.io/img/proxmox.jpg" length="35876" type="image/png" />
</item>
<item>
<title>Proxmox: Potect your server with fail2ban</title>
<link>https://devopstales.github.io/linux/proxmox-fail2ban/</link>
<pubDate>Wed, 11 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/proxmox-fail2ban/</guid>
<description>In thist post I will show you how you can protect your Proxmox server from broutforce http and ssh login atacks with fail2ban.
</description>
<enclosure url="https://devopstales.github.io/img/proxmox.jpg" length="35876" type="image/png" />
</item>
<item>
<title>Microk8s: Unable to connect to the server: x509: certificate has expired or is not yet valid</title>
<link>https://devopstales.github.io/kubernetes/microk8s-expired-cert/</link>
<pubDate>Tue, 10 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/microk8s-expired-cert/</guid>
<description>In this Post I will shoe you how to renew the kubernetes api cert in Microk8s.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.png" length="24573" type="image/png" />
</item>
<item>
<title>Proxmox: Set custom certificate</title>
<link>https://devopstales.github.io/linux/proxmox-custom-certificate/</link>
<pubDate>Sun, 08 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/proxmox-custom-certificate/</guid>
<description>In thist post I will show you how to configure your custom certificate on proxmox.
</description>
<enclosure url="https://devopstales.github.io/img/proxmox.jpg" length="35876" type="image/png" />
</item>
<item>
<title>Proxmox: local node address: cannot use IP</title>
<link>https://devopstales.github.io/linux/proxmox-cluster-join-error/</link>
<pubDate>Sat, 07 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/proxmox-cluster-join-error/</guid>
<description>In thist post I will show you how to sold the problem local node address: cannot use IP at cluster join.
</description>
<enclosure url="https://devopstales.github.io/img/proxmox.jpg" length="35876" type="image/png" />
</item>
<item>
<title>Analyzing PFsense logs in Graylog5</title>
<link>https://devopstales.github.io/linux/graylog5-pfsense/</link>
<pubDate>Tue, 20 Dec 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/graylog5-pfsense/</guid>
<description>We will parse the log records generated by the PfSense Firewall. We already have our graylog server running and we will start preparing the terrain to capture those logs records.
</description>
<enclosure url="https://devopstales.github.io/img/graylog.jpg" length="15668" type="image/png" />
</item>
<item>
<title>Install Graylog5</title>
<link>https://devopstales.github.io/linux/graylog5-install/</link>
<pubDate>Mon, 19 Dec 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/graylog5-install/</guid>
<description>Graylog is defined in terms of log management platform for collecting, indexing, and analyzing both structured and unstructured data from almost any source.
</description>
<enclosure url="https://devopstales.github.io/img/graylog.jpg" length="15668" type="image/png" />
</item>
<item>
<title>Install icinga director modules to Icingaweb2 on CentOS/Almlalinux/RockyOS 8</title>
<link>https://devopstales.github.io/monitoring/icinga2_director_centos8/</link>
<pubDate>Mon, 19 Dec 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/monitoring/icinga2_director_centos8/</guid>
<description>In this tutorial I will show you how to install Icingaweb2 module director.
</description>
<enclosure url="https://devopstales.github.io/img/icinga.png" length="27264" type="image/png" />
</item>
<item>
<title>Install Icinga2 on CentOS/Almlalinux/RockyOS 8</title>
<link>https://devopstales.github.io/monitoring/icinga2_install_centos8/</link>
<pubDate>Sun, 18 Dec 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/monitoring/icinga2_install_centos8/</guid>
<description>In this tutorial I will show you how to install Icinga2 and Icingaweb2 webinterface.
</description>
<enclosure url="https://devopstales.github.io/img/icinga.png" length="27264" 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>Tue, 22 Nov 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/windows/windows-server-radius/</guid>
<description>In this post I will show how to set up a RADIUS server on Windows Server 2019 to provide 802.1X Wireless Connections to Unifi Controller.
</description>
<enclosure url="https://devopstales.github.io/img/ps.png" length="15945" type="image/png" />
</item>
<item>
<title>How to: Configure Firefox to use Windows Certificate Store via GPO</title>
<link>https://devopstales.github.io/windows/configure-firefox-to-use-windows-certificate-store-via-gpo/</link>
<pubDate>Wed, 16 Nov 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/windows/configure-firefox-to-use-windows-certificate-store-via-gpo/</guid>
<description>I ran into an issue when I enabled HTTPS Inspection on our transparent proxy and Firefox had a certificate error for everyone.
</description>
<enclosure url="https://devopstales.github.io/img/ps.png" length="15945" type="image/png" />
</item>
<item>
<title>Configure squid transparent proxy on pfsense</title>
<link>https://devopstales.github.io/linux/pfsense-suidproxy/</link>
<pubDate>Sat, 12 Nov 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/pfsense-suidproxy/</guid>
<description>In this post I will show you how you can install squid proxy on pfsense and configure as a transparent proxy.
</description>
<enclosure url="https://devopstales.github.io/img/squid.png" length="62643" type="image/png" />
</item>
<item>
<title>How to Manage Kubernetes Resource Limits</title>
<link>https://devopstales.github.io/kubernetes/k8s-limits/</link>
<pubDate>Tue, 08 Nov 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-limits/</guid>
<description>In this post I will show you the usage of the Kubernetes limits and requests.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.png" length="24573" type="image/png" />
</item>
<item>
<title>Linux user namespace management wit CRI-O in Kubernetes</title>
<link>https://devopstales.github.io/kubernetes/k8s-user-namespace/</link>
<pubDate>Wed, 02 Nov 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-user-namespace/</guid>
<description>In this blog post I will introduce user namespaces, then I will show you how you can use it in Kubernetes.
</description>
<enclosure url="https://devopstales.github.io/img/crio.png" length="21604" type="image/png" />
</item>
<item>
<title>Kubernetes volume expansion with Ceph RBD CSI driver</title>
<link>https://devopstales.github.io/kubernetes/k8s-ceph-csi-extand/</link>
<pubDate>Thu, 20 Oct 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-ceph-csi-extand/</guid>
<description>In this post I will show you how can you use CEPH RBD CSI driver as persistent storage end enable volume expansion on Kubernetes.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.png" length="24573" type="image/png" />
</item>
<item>
<title>trivy-operator 2.5: Patch release for Admisssion controller</title>
<link>https://devopstales.github.io/kubernetes/trivy-operator-2.5/</link>
<pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/trivy-operator-2.5/</guid>
<description>Today I am happy to announce the release of trivy-operator 2.5. This blog post focuses on the functionality provided by the trivy-operator 2.5 release.
</description>
<enclosure url="https://devopstales.github.io/img/trivy.png" length="16473" type="image/png" />
</item>
<item>
<title>pfsense: IPSec SSH connectivity issue</title>
<link>https://devopstales.github.io/linux/pfsense-ipsec-mss-clamping/</link>
<pubDate>Wed, 28 Sep 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/linux/pfsense-ipsec-mss-clamping/</guid>
<description>In this post I will setup an IPSec dynamic route-based vpn tunnel between two pfSense Appliances.
</description>
<enclosure url="https://devopstales.github.io/img/pfsense.png" length="88321" type="image/png" />
</item>
<item>
<title>Debug with Ephemeral Containers</title>
<link>https://devopstales.github.io/kubernetes/k8s-ephemerald-pod/</link>
<pubDate>Mon, 12 Sep 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-ephemerald-pod/</guid>
<description>In this post I will show you how you can debug your application in a pod with a new function called Ephemeral Containers released in Kubernetes 1.25.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.png" length="24573" type="image/png" />
</item>
<item>
<title>Kubernetes: How to migrate Pod Security Policy to Pod Security Admission?</title>
<link>https://devopstales.github.io/kubernetes/k8s-migrate-from-psp/</link>
<pubDate>Wed, 24 Aug 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-migrate-from-psp/</guid>
<description>With the release of Kubernetes v1.25, Pod Security admission has now entered to stable and PodSecurityPolicy is removed. In this article, I will show you how you can migrate to the new Pod Security Admission.
</description>
<enclosure url="https://devopstales.github.io/img/k8ssec.png" length="17050" type="image/png" />
</item>
<item>
<title>Kubernetes Pod Security Admission</title>
<link>https://devopstales.github.io/kubernetes/k8s-ps/</link>
<pubDate>Tue, 23 Aug 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-ps/</guid>
<description>With the release of Kubernetes v1.25, Pod Security Admission has now entered to stable and PodSecurityPolicy is removed. In this article, we cover the key concepts of Pod Security Admission along with how to use it.
</description>
<enclosure url="https://devopstales.github.io/img/k8ssec.png" length="17050" type="image/png" />
</item>
<item>
<title>Pod Security Standards using Kyverno</title>
<link>https://devopstales.github.io/kubernetes/k8s-pod-security-standards-using-kyverno/</link>
<pubDate>Wed, 10 Aug 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-pod-security-standards-using-kyverno/</guid>
<description>In this post I will show you how you can use Kyverno instal of Pod Security Admission.
</description>
<enclosure url="https://devopstales.github.io/img/kyverno.jpg" length="19582" type="image/png" />
</item>
<item>
<title>veeam backup: I can not create a backup job to my AWS S3 repository</title>
<link>https://devopstales.github.io/virtualization/veeam-cant-create-job-to-s3/</link>
<pubDate>Sun, 24 Jul 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/virtualization/veeam-cant-create-job-to-s3/</guid>
<description>In this pos I will show you how you can backup to AWS S3 with Veeam Backup.
</description>
<enclosure url="https://devopstales.github.io/img/veeam.png" length="877" type="image/png" />
</item>
<item>
<title>veeam backup: Cant Add Repository to a Scale Out Backup Repository?</title>
<link>https://devopstales.github.io/virtualization/veeam-cant-add-repo/</link>
<pubDate>Fri, 22 Jul 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/virtualization/veeam-cant-add-repo/</guid>
<description>When adding repositories to a Veeam Scale Out Backup Repository you may see this error: Cant Add Repository to a Scale Out Backup Repository? In this Pos I will show you how you can fix is issue.
</description>
<enclosure url="https://devopstales.github.io/img/veeam.png" length="877" 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>Wed, 20 Jul 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/virtualization/install-vmware-in-proxmox/</guid>
<description>Int his post I will show you how you can install an vmware ESX host in Proxmox VE.
</description>
<enclosure url="https://devopstales.github.io/img/vmware.png" length="128759" type="image/png" />
</item>
<item>
<title>MikroTik - RouterOS: PPPOE Server</title>
<link>https://devopstales.github.io/mikrotik/ros-pppoe-server/</link>
<pubDate>Sun, 17 Jul 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/mikrotik/ros-pppoe-server/</guid>
<description>In this post I will show you how to configure a PPPOE Server on on MikroTik RouterOS router.
</description>
<enclosure url="https://devopstales.github.io/img/mikrotik.png" length="12024" type="image/png" />
</item>
<item>
<title>MikroTik - RouterOS: Basic Wifi Config</title>
<link>https://devopstales.github.io/mikrotik/ros-wifi/</link>
<pubDate>Sat, 16 Jul 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/mikrotik/ros-wifi/</guid>
<description>In this post I will show you how to configure a basic wifi on MikroTik RouterOS router.
</description>
<enclosure url="https://devopstales.github.io/img/mikrotik.png" length="12024" type="image/png" />
</item>
<item>
<title>MikroTik - RouterOS: Web Content Filter</title>
<link>https://devopstales.github.io/mikrotik/ros-web-content-filter/</link>
<pubDate>Thu, 14 Jul 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/mikrotik/ros-web-content-filter/</guid>
<description>In this post I will show you how you can can filter web content with MikroTik RouterOS router.
</description>
<enclosure url="https://devopstales.github.io/img/mikrotik.png" length="12024" type="image/png" />
</item>
<item>
<title>MikroTik - RouterOS: Secure your router</title>
<link>https://devopstales.github.io/mikrotik/ros-secure/</link>
<pubDate>Tue, 12 Jul 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/mikrotik/ros-secure/</guid>
<description>In this post I will show you can secure your MikroTik RouterOS router.
</description>
<enclosure url="https://devopstales.github.io/img/mikrotik.png" length="12024" type="image/png" />
</item>
<item>
<title>MikroTik - RouterOS: Basic configuration</title>
<link>https://devopstales.github.io/mikrotik/ros-basic/</link>
<pubDate>Sun, 10 Jul 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/mikrotik/ros-basic/</guid>
<description>In this post I will show you the basic configuration of a MikroTik RouterOS router.
</description>
<enclosure url="https://devopstales.github.io/img/mikrotik.png" length="12024" type="image/png" />
</item>
<item>
<title>CrowdSec Intrusion Detection System (IDS) for Kubernetes</title>
<link>https://devopstales.github.io/kubernetes/k8s-crowdsec-ids/</link>
<pubDate>Fri, 08 Jul 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-crowdsec-ids/</guid>
<description>In this post I will show you how you can install CrowdSec Intrusion Detection System (IDS) inside a Kubernetes cluster.
</description>
<enclosure url="https://devopstales.github.io/img/crowdsec.png" length="35481" type="image/png" />
</item>
<item>
<title>Ubuntu 22.04 - Microsoft Active Directory Group Policy</title>
<link>https://devopstales.github.io/windows/ubuntu-22.04-ad-join/</link>
<pubDate>Tue, 05 Jul 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/windows/ubuntu-22.04-ad-join/</guid>
<description>In this Post I will show you the new Active Directory Group Policy integration in Ubuntu 22.04.
</description>
<enclosure url="https://devopstales.github.io/img/ubuntu.ico" length="177698" type="image/png" />
</item>
<item>
<title>trivy-operator 2.4: Patch release for Admisssion controller</title>
<link>https://devopstales.github.io/kubernetes/trivy-operator-2.4/</link>
<pubDate>Thu, 30 Jun 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/trivy-operator-2.4/</guid>
<description>Today I am happy to announce the release of trivy-operator 2.4. This blog post focuses on the functionality provided by the trivy-operator 2.4 release.
</description>
<enclosure url="https://devopstales.github.io/img/trivy.png" length="16473" type="image/png" />
</item>
<item>
<title>Secure your applications with Pomerium Ingress Controller</title>
<link>https://devopstales.github.io/kubernetes/k8s-pomerium-ingress-controller/</link>
<pubDate>Tue, 14 Jun 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-pomerium-ingress-controller/</guid>
<description>In this blog post, I will show you how you can install Pomerium Ingress Controller and use it to secure your application.
</description>
<enclosure url="https://devopstales.github.io/img/pomerium.webp" length="660" type="image/png" />
</item>
<item>
<title>How to build containers in Kubernetes</title>
<link>https://devopstales.github.io/kubernetes/container-build-in-kubernetes/</link>
<pubDate>Fri, 10 Jun 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/container-build-in-kubernetes/</guid>
<description>In this blogpost I will show you what tools you can user for privileged builds in Kubernetes.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.png" length="24573" type="image/png" />
</item>
<item>
<title>How to Change IP on Kubernetes node.</title>
<link>https://devopstales.github.io/kubernetes/k8s-change-ip/</link>
<pubDate>Tue, 07 Jun 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/k8s-change-ip/</guid>
<description>In this tutorial I will show you how you can change th IP of the Kubernetes Nodes and Workers.
</description>
<enclosure url="https://devopstales.github.io/img/kubernetes.png" length="24573" type="image/png" />
</item>
<item>
<title>kubernetes 1.24: Install cri-dockerd for docker</title>
<link>https://devopstales.github.io/kubernetes/migrate-kubernetes-to-dockershim/</link>
<pubDate>Thu, 05 May 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/migrate-kubernetes-to-dockershim/</guid>
<description>With the new Kubernetes 1.24 and deprecation of dockershim, in this post I will show you how you can migrate your kubernetes cluster to use cri-dockerd instad of dockershim.
</description>
<enclosure url="https://devopstales.github.io/img/docker.png" length="37997" type="image/png" />
</item>
<item>
<title>kubernetes 1.24: Migrate from docker to containerd</title>
<link>https://devopstales.github.io/kubernetes/migrate-docker-to-containerd/</link>
<pubDate>Thu, 05 May 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/migrate-docker-to-containerd/</guid>
<description>With the new Kubernetes 1.24 and deprecation of dockershim, in this post I will show you how you can migrate your kubernetes cluster from docker to containerd.
</description>
<enclosure url="https://devopstales.github.io/img/containerd.png" length="516" type="image/png" />
</item>
<item>
<title>kubernetes 1.24: Migrate from docker to cri-o</title>
<link>https://devopstales.github.io/kubernetes/migrate-docker-to-crio/</link>
<pubDate>Thu, 05 May 2022 00:00:00 +0000</pubDate>
<guid>https://devopstales.github.io/kubernetes/migrate-docker-to-crio/</guid>
<description>With the new Kubernetes 1.24 and deprecation of dockershim, in this post I will show you how you can migrate your kubernetes cluster from docker to cri-o.
</description>
<enclosure url="https://devopstales.github.io/img/crio.png" length="21604" type="image/png" />
</item>
<item>