-
Notifications
You must be signed in to change notification settings - Fork 6
/
sitemap.xml
3489 lines (3487 loc) · 265 KB
/
sitemap.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"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://cloudnative.to/community/sig/istio/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/how-istio-got-its-name/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/city/beijing/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/join/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/academy/webinar/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/01/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/contribute/style/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/istio-doc-translation/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/involve/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/city/shanghai/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/academy/manual/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/02/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/contribute/review/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/istio-big-talk/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/city/guangzhou/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/policy/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/03/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/city/shenzhen/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/academy/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/04/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/city/chengdu/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/05/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/city/dalian/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/contribute/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/06/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/city/nanjing/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/07/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/city/hangzhou/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/08/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/10/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/11/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/12/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/13/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/14/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/15/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/16/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/17/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/18/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/city/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/19/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/contact/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/20/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/21/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/community/sig/istio/release/22/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/aip-%E7%BD%91%E5%85%B3/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/api-gateway-checklist-strength/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/categories/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tags/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/%E5%85%B6%E4%BB%96/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/translators/%E4%BA%91%E5%8E%9F%E7%94%9F%E7%A4%BE%E5%8C%BA/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/cncf/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/how-to-fix-cncf-governance-and-create-business/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/ambient/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/cilium/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/istio/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/istio/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/ambient-vs-cilium/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/amazon-ecs/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/aws-app-mesh/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/aws-fargate/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/migrating-from-aws-app-mesh-to-amazon-ecs-service-connect/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/service-mesh/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E4%BA%91%E5%8E%9F%E7%94%9F%E7%A4%BE%E5%8C%BA/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/arka-bhattacharya/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/aws/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/ca/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/pca/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/istio-aws-private-ca/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/jd/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/jd-grandshorestech/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E6%8B%9B%E8%81%98/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/%E6%8B%9B%E8%81%98/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/pulse/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/announcing-pulse-proxy/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E4%BB%A3%E7%90%86/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/%E6%96%B0%E9%97%BB/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/alex-ly/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/craig-box/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/istio-more-for-less/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/john-howard/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/kubernetes/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/linkerd/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/mtls/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E6%9C%8D%E5%8A%A1%E7%BD%91%E6%A0%BC/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E9%9B%B6%E4%BF%A1%E4%BB%BB/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E7%BD%91%E7%BB%9C%E5%AE%89%E5%85%A8/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/mtls-kubernetes/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/istio-1-23-release/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/ztunnel/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/ztunnel-testing/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/ai/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/sap/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/sapwned-sap-ai-vulnerabilities-ai-security/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/wiz/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E5%AE%89%E5%85%A8/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/cloud-agnostic-startup-platform/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/keycloak/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E8%BA%AB%E4%BB%BD%E9%AA%8C%E8%AF%81/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/istio-keycloak-authentication-authorization/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E6%8E%88%E6%9D%83/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/grace/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E6%8A%80%E6%9C%AF%E7%AE%A1%E7%90%86/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E6%9E%B6%E6%9E%84/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/you-probably-dont-need-microservices/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E5%BE%AE%E6%9C%8D%E5%8A%A1/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/%E5%BE%AE%E6%9C%8D%E5%8A%A1/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/flomesh/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/jutopia/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E6%9F%B4%E5%A3%AE/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E4%BE%AF%E8%AF%97%E5%86%9B/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E8%92%8B%E5%85%B4%E5%BD%A6/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E6%9E%97%E6%9D%A8/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E9%A9%AC%E6%99%AF%E8%B4%BA/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E9%A9%AC%E5%85%A8%E4%B8%80/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E6%B2%99%E6%B8%BA/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E9%82%B5%E6%AC%A2%E5%BA%86/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E7%8E%8B%E8%95%B4%E5%8D%9A/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E6%9D%A8%E8%88%AA/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E6%9D%A8%E6%B4%8B/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/event/cloud-native-meetup-dalian-14/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E5%BC%A0%E6%99%8B%E6%B6%9B/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/aayush-mittal/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/ai/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/llama/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/everything-you-need-to-know-about-llama-3-most-powerful-open-source-model-yet-concepts-to-usage/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/istiod-architecture/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/banyandb/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/ebpf/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/skywalking/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/skywalking/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/skywalking-10-release/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E4%B8%87%E5%87%AF/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E5%90%B4%E6%99%9F/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/kyverno/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/kyverno.io/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/service-mesh/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/securing-services-meshes-easier-with-kyverno/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/benoit-entzmann/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/cilium/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/network/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/kubernetes-networking-by-using-cilium-beginner-level/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/header-based-routing-in-istio-without-header-propagation/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/tetrate/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/how-to-configure-global-rate-limits-by-path-in-istio/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/buoyant/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/linkerd-revise-release-model/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E5%BC%80%E6%BA%90/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/end-of-an-era-weaveworks-closes-shop-amid-cloud-native-turbulence/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E4%BA%91%E5%8E%9F%E7%94%9F/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/%E4%BA%91%E5%8E%9F%E7%94%9F/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/cloud-computing-post-serverless-trends/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/bgp/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/kuberentes/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/sue.eu/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/expose-loadbalanced-kubernetes-services-with-bgp-cilium/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/scaling-cilium-to-new-heights-with-xds/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/shashank-ram/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/xds/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/doordash/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/doordash/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/doordash-service-mesh/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/nlb/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/proxy-protocol/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/show-source-ip/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/haproxy/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/haproxy/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/proxy-protocol/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/%E5%BC%80%E6%BA%90/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/keda/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/battle-of-the-pods-kubernetes-autoscaling-showdown-keda-vs-vanilla-kubernetes/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/kedify.io/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/kubernetes/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/opentelemetry/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/why-the-latest-advances-in-opentelemetry-are-significant/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E5%8F%AF%E8%A7%82%E6%B5%8B%E6%80%A7/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/%E5%8F%AF%E8%A7%82%E6%B5%8B%E6%80%A7/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/ebpf/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/thebsdbox/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/application-traffic-with-ebpf/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/chainguard.dev/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/zero-trust/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/ebpf-adventures-in-networking/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/securing-cloud-natives-most-important-use-cases/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/cilium-2023-annual-report/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/calico/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/cluster-mesh/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/reza-ramezanpour/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/what-is-a-kubernetes-cluster-mesh-and-what-are-the-benefits/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/gateway-api/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/smaine-kahlouch/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/cilium-gateway-api/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/scaling-and-sizing-the-sidecar/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/karl-stoney/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/sidecar/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/opentelemetry-and-observability-looking-forward/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/what-will-be-the-api-management-trends-for-2024/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/api-gateway/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/gateway/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/gateway/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/dashboard/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/grafana/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/grafana/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/grafana-dashboards-in-2023-memorable-use-cases-of-the-year/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/gitops/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/gitops/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/levi-van-noort/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/extending-gitops-effortless-continuous-integration-and-deployment-on-kubernetes/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/ashley-somerville/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/heds-simons/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/opentelemetry-best-practices/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/genai/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/7-best-practices-for-developers-getting-started-with-genai/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/does-kubernetes-really-perform-better-on-bare-metal-vs-vms/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/hashicorp/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/mitchell-reflects-as-he-departs-hashicorp/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/startup/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/how-to-observe-your-ci-cd-pipelines-with-opentelemetry/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/cncf-archives-the-service-mesh-interface-smi-project/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/service-mesh-interface/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/smi/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/backstage/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/vaibhav-gupta/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E5%B9%B3%E5%8F%B0%E5%B7%A5%E7%A8%8B/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/%E5%B9%B3%E5%8F%B0%E5%B7%A5%E7%A8%8B/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/starting-platform-engineering-journey-backstage/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/api-gateway/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/jwt/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/jwts-authenticate-services-api-gateways/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/ibm/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/app-centric-connectivity-a-new-paradigm-for-a-multicloud-world/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/mesh/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/bitdrift/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/matt-created-bitdrift/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/matt-klein/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/dapr/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/finops/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E6%95%96%E5%B0%8F%E5%89%91/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E9%87%91%E8%9E%8D%E7%A7%91%E6%8A%80/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E7%8E%8B%E7%90%BC/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/event/cloud-native-meetup-guangzhou-13/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E8%B5%B5%E5%B4%87%E9%98%B3/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E5%91%A8%E6%9E%97%E8%83%A4/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/istio-egress-sni/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/how-ciliums-mutual-authentication-can-compromise-security/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/istiocon/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/kubecon/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/istiocon-at-kubecon-na/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/translators/%E5%AE%8B%E5%87%80%E8%B6%85/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/ben-thompson/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/microsoft/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/openai/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/openais-misalignment-and-microsofts-gain/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/acorn/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/atulpriya-sharma/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/dagger/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/score/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/decoding-workload-specification/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/aditya-barik/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/ordering-containers-within-pod/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/kubecon/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/kubecon-na-5-interesting-keynotes/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/yurh/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/kubecon-chicago-key-takeaways/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/brian-ehlert/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/ciara-stacke/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/devops/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/devops/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/gateway-api/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/kubernetes-secure-development-best-practices-in-action/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/matthew-yacobucci/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/nginx/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/nginx/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/saylor-berman/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/security/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/translators/%E6%9E%97%E9%9D%99/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/why-we-decided-to-start-fresh-with-our-nginx-gateway-fabric/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/lin-sun/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/yuval-kohavi/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/secure-apps-with-istio/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E5%88%9B%E4%B8%9A/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/%E5%88%9B%E4%B8%9A/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/startup-playbook/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/gateway-api-ingress2gateway/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/envoy/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/envoy/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/mengjia-liang-and-gong-zhang/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/webassembly/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/optimizing-traffic-routing-uipath-automation-suite-envoy-wasm/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/qcon/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/dapr-cloud-services/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/%E4%BA%91%E8%AE%A1%E7%AE%97/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/grpc/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/shrishs/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/understanding-grpc-load-balancing-in-kubernetes-with-istio/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/owasp/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/sysdig/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/%E5%AE%89%E5%85%A8/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/top-owasp-kubernetes/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/fiberplane/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/prometheus/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/why-are-prometheus-queries-hard/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/docker/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E5%AE%B9%E5%99%A8/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/run-gui-applications-as-containers-with-x11docker/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/kcl/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/kcl-joining-cncf-sandbox/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/wasm-vs-kubernetes/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/7-steps-to-highly-effective-kubernetes-policies/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/can-chatgpt-save-collective-kubernetes-troubleshooting/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/webassembly/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/is-it-too-early-to-leverage-ai-for-webassembly/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/istio-1-19-release/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/gateway-api-release/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/kuberentes/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/performance-and-scalability/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E5%BD%AD%E6%9F%B3/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E7%8E%8B%E7%92%9E/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E7%8E%8B%E9%9D%92/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E7%8E%8B%E7%A5%96%E7%86%99/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E5%8F%B6%E5%A4%A9%E6%98%9F/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/event/cloud-native-meetup-chengdu-12/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E5%BC%A0%E6%99%93%E8%BE%89/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E6%93%8E%E5%88%9B%E7%A7%91%E6%8A%80/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/current-state-and-future-of-ebpf/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/radar-trends-to-watch-august-2023/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E6%8A%80%E6%9C%AF%E8%B6%8B%E5%8A%BF/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/whats-holding-up-webassemblys-adoption/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/webassemlby/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/otlp-version-one-released/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/understanding-kubernetes-new-sidecar-container-feature/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/mirantis/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/ci/cd/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/codefresh/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E6%8C%81%E7%BB%AD%E9%83%A8%E7%BD%B2/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E6%8C%81%E7%BB%AD%E4%BA%A4%E4%BB%98/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/%E6%8C%81%E7%BB%AD%E4%BA%A4%E4%BB%98/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/enterprise-ci-cd-best-practices/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/istio-service-mesh-graduates-cncf/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/daniel-olaogun/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/understanding-kubernetes-network-policies/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/cnapp/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/what-is-cnapp/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/crane-scheduler/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/victoriametrics/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E7%9B%91%E6%8E%A7/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E5%8C%A1%E6%BE%84/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/argo/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/cloudnative-ci-argo-workflow/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/argo-workflow/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/cicd/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E6%A2%81%E8%BF%9C%E9%B9%8F/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/robert-kimani/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/how-opentelemetry-works-with-kubernetes/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/api-%E7%BD%91%E5%85%B3/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/gateway-and-mesh/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/navendu-pottekkat/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E7%BD%91%E5%85%B3/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/%E7%BD%91%E5%85%B3/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/dev-nag/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/reframing-kubernetes-observability-with-a-graph/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/kubernetes-gateway-api-explained/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E5%BC%A0%E5%90%AF%E8%88%AA/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/osm/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/osm-deprecated/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/asen-alexandrov/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/docker-without-containers/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/observability-summit-2023-recap/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E5%AE%8B%E5%87%80%E8%B6%85/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E6%B2%88%E5%B7%8D/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E9%99%88%E5%B1%B9%E5%8A%9B/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E9%AB%98%E7%BB%A7%E7%BF%94/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E6%B1%9F%E6%B2%B3%E6%B8%85/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/event/observability-summit-2023/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E5%88%98%E5%8D%AB%E5%86%9B/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E7%BD%97%E5%B9%BF%E6%98%8E/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E4%B9%94%E6%96%B0%E4%BA%AE/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E5%AE%8B%E4%BD%B3%E6%B4%8B/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E5%90%91%E9%98%B3/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E4%BD%99%E5%B9%BF%E5%9D%9D/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E8%B5%B5%E4%BA%9A%E9%9B%84/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/deepflow/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E6%9D%8E%E5%80%A9/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/service-map-observation-performance-test/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/fabrizio-guglielmino/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/docker-wasm-quick-intro/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/cncf-platforms-white-paper/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/alex-gervais/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/reducing-the-cognitive-load-associated-with-observability/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/fermyon/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/spin/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/spin-wasm-ga/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/introducing-tetrate-service-express/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/tse/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/multi-tenancy-in-kubernetes/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/chatgpt/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/richard-macmanus/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/the-next-wave-of-big-data-companies-in-the-age-of-chatgpt/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E5%A4%A7%E6%95%B0%E6%8D%AE/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/%E5%A4%A7%E6%95%B0%E6%8D%AE/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/argocd/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/nicholas-morey/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/argo-cd-kyverno-best-practice-policies/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/waypoint-proxy-made-simple/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/waypoint/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/aditya-r/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/crun/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/oci/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/wasm-containers/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/understanding-istio-and-open-policy-agent-opa/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/opa/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/dan-moore/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/jwt-components-explained/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/introducing-wazero-from-tetrate/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/wazero/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/cloud-bound-applications/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/category/%E5%A4%9A%E9%9B%86%E7%BE%A4%E7%BD%91%E7%BB%9C/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E9%9F%A9%E4%BC%9F%E6%A3%AE/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/vxlan-calico-l2-network/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E9%99%88%E4%BA%A6%E5%B8%85/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/victoriametrics/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/analysis-of-delay-with-deepflow/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/rust-based-ztunnel/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/rust/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/b.-cameron-gain/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/is-webassembly-really-the-future/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/google/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/introducing-service-weaver-framework-for-writing-distributed-applications/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/w.-watson/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/cloud-native-network-functions-concern/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/envoy-gateway/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/envoy-gateways-latest-v0-3-release-extends-the-kubernetes-gateway-api/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/matt-turner/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/omri-gazitt/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/rbac/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/role-based-access-control-five-common-authorization-patterns/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E6%9D%83%E9%99%90/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/rust-to-wasm/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/surma/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/thomas-depierre/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E4%BE%9B%E5%BA%94%E9%93%BE/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/not-a-supplier/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/troubleshooting-of-the-k8s-application-with-deepflow/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/optimize-traffic-management-and-security-with-these-service-mesh-best-practices/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/service-mesh-deployment-best-practices-for-security-and-high-availability/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/dns/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/technical-deep-dive-securing-automation-acme-dns-challenge-validation/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E8%AF%81%E4%B9%A6/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/webassembly-5-predictions-for-2023/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/how-service-mesh-layers-microservices-security-with-traditional-security-to-move-fast-safely/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/grafana-plugin/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/grafana-plugins-on-cloud-observability/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E5%91%A8%E6%8C%AF%E5%AE%87/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/egress/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E6%9E%97%E9%9D%99/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/egress-for-k8s/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/k8s-service-exception-troubleshooting/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/automate-istio-ca-rotation-in-production-at-scale/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/istio-trust/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/harshicorp/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/vault/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/how-to-use-hashicorp-vault-as-a-more-secure-way-to-store-istio-certificates/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/helm/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E7%8E%8B%E7%82%9C/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/advanced-guide-for-cloudnative-architects/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/the-top-6-zero-trust-principles-for-kubernetes-security/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/top-3-mtls-best-practices-for-zero-trust-kubernetes-security/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/shardingshpere/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/skywalking-shardingsphere-proxy/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/does-kubernetes-really-give-you-multicloud-portability/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/%E5%A4%9A%E4%BA%91/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/kubecon-summary-of-the-open-observability-day/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/metadata/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/observability/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E9%99%88%E6%99%A8/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/the-importance-of-metadata-in-observability/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/container-insights-2022/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/hands-on-with-envoy-gateway/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/envoy-gateway-to-the-future/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/enable-the-observability-of-kube-ovn-cni-environment/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E5%AE%8B%E5%BB%BA%E6%98%8C/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/2022-service-mesh-summit-apache-apisix-mesh/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E9%87%91%E5%8D%AB/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/autologging-for-request-log-and-flow-log/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/tag/velero/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E4%BB%87%E6%98%8E/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/introducing-velero/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/retrospect-service-mesh-summit/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/zachary-butcher/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/blog/what-is-ambient-mesh/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E6%88%B4%E7%BF%94/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/event/cloud-native-meetup-guangzhou-09/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>
<loc>https://cloudnative.to/author/%E5%BC%A0%E5%96%84%E5%8F%8B/</loc><lastmod>2024-11-06T17:34:06+08:00</lastmod><changefreq>weekly</changefreq></url>
<url>