-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.yaml
More file actions
6830 lines (6830 loc) · 225 KB
/
Copy pathindex.yaml
File metadata and controls
6830 lines (6830 loc) · 225 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
apiVersion: v1
entries:
authelia-oidc-operator:
- apiVersion: v2
appVersion: 0.1.30
created: "2026-08-16T03:38:50.31421697Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: f331cc456575666f3534b1e7cabaf06d80b4c757786975dd4904000f2b82550c
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.30.tgz
version: 0.1.30
- apiVersion: v2
appVersion: 0.1.29
created: "2026-08-16T03:38:50.312469101Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 126138a11b5d474ee504229b13ff8419ef044291aa0e02c1a7b8af8ed2750761
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.29.tgz
version: 0.1.29
- apiVersion: v2
appVersion: 0.1.27
created: "2026-08-16T03:38:50.312081157Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 27ce5901bf36a8d2c85bf5568656d4060bb02431864c152c5783568bb9da7c3d
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.27.tgz
version: 0.1.27
- apiVersion: v2
appVersion: 0.1.26
created: "2026-08-16T03:38:50.311718829Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 9b2a0b5998be0621608689b08d06ec2d9019c8b994a9edfffe371a62fb517bc8
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.26.tgz
version: 0.1.26
- apiVersion: v2
appVersion: 0.1.25
created: "2026-08-16T03:38:50.311371673Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 6283036a95e7594b8efc374cde33c413745090d7a1353191e33482507ee4eb5d
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.25.tgz
version: 0.1.25
- apiVersion: v2
appVersion: 0.1.24
created: "2026-08-16T03:38:50.311039315Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 4e1d74fa855ad9ebc9d82f5c668b01c5f57f2729337942161c5e2506cd4f4bc4
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.24.tgz
version: 0.1.24
- apiVersion: v2
appVersion: 0.1.23
created: "2026-08-16T03:38:50.310699786Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: a253b14041779923ea5a47b61f707aa41a4d365ec3bbfcd0f876519f34140cdd
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.23.tgz
version: 0.1.23
- apiVersion: v2
appVersion: 0.1.22
created: "2026-08-16T03:38:50.310322387Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 3b02dfa254a1b55a43dfa8dd4da3b5c0ce3d7d2411703696f6a42bdb62e334f7
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.22.tgz
version: 0.1.22
- apiVersion: v2
appVersion: 0.1.21
created: "2026-08-16T03:38:50.309974781Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 0aab6d0e459961407c4c95368036a3d022e162570d089447299d5ecf98f588a9
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.21.tgz
version: 0.1.21
- apiVersion: v2
appVersion: 0.1.20
created: "2026-08-16T03:38:50.309628514Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 0524ec98606a181248bc6d26a437b8ab34f4b7a918ec4a662191787e2ae2a9ce
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.20.tgz
version: 0.1.20
- apiVersion: v2
appVersion: 0.1.19
created: "2026-08-16T03:38:50.309241299Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 87ad3a378dd95808893073a14c5743bf1fefa70a24120eca62111515b67dea12
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.19.tgz
version: 0.1.19
- apiVersion: v2
appVersion: 0.1.18
created: "2026-08-16T03:38:50.308874885Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 5b9c2beafed940694777e2dfdcb1642e38cd5c0e5e9826293e80ec603f2e888d
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.18.tgz
version: 0.1.18
- apiVersion: v2
appVersion: 0.1.17
created: "2026-08-16T03:38:50.308301551Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: c529ac95f07a9a6ae5ab6b2c052a5aa560cf1e40f47e0a2feca04de1cae72de3
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.17.tgz
version: 0.1.17
- apiVersion: v2
appVersion: 0.1.16
created: "2026-08-16T03:38:50.307428842Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 8ea5e74a6bdde94ec57dfc15664289a4b03a486eb698b404688c39a45629a0b2
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.16.tgz
version: 0.1.16
- apiVersion: v2
appVersion: 0.1.15
created: "2026-08-16T03:38:50.307102711Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 2d7f88626d37dcbd1f58b70e9d9601d11289426127354174059e194d08bd75c2
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.12.tgz
version: 0.1.12
- apiVersion: v2
appVersion: 0.1.13
created: "2026-08-16T03:38:50.306772282Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: c734539b675e79ebef481e2f1ba3d9bcc891cce365e90b6e0073dc7d03ef96a4
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.11.tgz
version: 0.1.11
- apiVersion: v2
appVersion: 0.1.12
created: "2026-08-16T03:38:50.306431957Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 4eac80d573138f9b055916858e458ddaf36ebb2711444ff41a51a85dbb7fe5f0
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.10.tgz
version: 0.1.10
- apiVersion: v2
appVersion: 0.1.12
created: "2026-08-16T03:38:50.316086231Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: c0ed57d8c25b9f51b74f0e04bec906745d48a1587299b89043d7ec5606328443
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.9.tgz
version: 0.1.9
- apiVersion: v2
appVersion: 0.1.9
created: "2026-08-16T03:38:50.315795108Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 41c420085c1a91e85bf1898db53856f035902b98bafdcef41d132740389041b2
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.8.tgz
version: 0.1.8
- apiVersion: v2
appVersion: 0.1.8
created: "2026-08-16T03:38:50.315505474Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 273e9beb0078a2d3a5332041180344da5fa65f117e4ab70c0b72e2002c2e7067
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.7.tgz
version: 0.1.7
- apiVersion: v2
appVersion: 0.1.7
created: "2026-08-16T03:38:50.315203464Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 7032be6a5ff845effb8f4a0d4c0d100d0c863e1bb4007b659b7edc21339f2cd5
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.6.tgz
version: 0.1.6
- apiVersion: v2
appVersion: 0.1.6
created: "2026-08-16T03:38:50.314905848Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 04b7161d198214bf33ea6ac5ff42afeccd63ddb56876185dde329d387fbfbecf
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.5.tgz
version: 0.1.5
- apiVersion: v2
appVersion: 0.1.5
created: "2026-08-16T03:38:50.314599509Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 605943075cc703809a58c72ee15ece2a93b9b0d3fd0c2a692e3fffc8aa2c8fd5
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.4.tgz
version: 0.1.4
- apiVersion: v2
appVersion: 0.1.2
created: "2026-08-16T03:38:50.313628036Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: 29eda77a614b8c3c43cf25aa0bb4acc4b98a9e00fd6e0178ad599b5001d740e8
home: https://github.com/fredericrous/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.3.tgz
version: 0.1.3
- apiVersion: v2
appVersion: 0.1.1
created: "2026-08-16T03:38:50.305841378Z"
description: A Kubernetes operator that manages OIDC client configurations for
Authelia
digest: e5a6fdebaafb12f2f43c3cb7e248beb754bd6068d1bce354cdaae5271388bd5e
home: https://github.com/fredericrous/homelab/tree/main/authelia-oidc-operator
keywords:
- authelia
- oidc
- operator
- kubernetes
- authentication
kubeVersion: '>=1.28.0-0'
maintainers:
- name: fredericrous
url: https://github.com/fredericrous
name: authelia-oidc-operator
sources:
- https://github.com/fredericrous/homelab/tree/main/authelia-oidc-operator
type: application
urls:
- https://fredericrous.github.io/charts/packages/authelia-oidc-operator-0.1.1.tgz
version: 0.1.1
cluster-vision:
- apiVersion: v2
appVersion: 0.22.0
created: "2026-08-16T03:38:50.322232888Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: fe95393d1892d10762125570ec233fe98e361b509033121ebd768c575b7833aa
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.22.0.tgz
version: 0.22.0
- apiVersion: v2
appVersion: 0.20.1
created: "2026-08-16T03:38:50.3220522Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 5ca8ae5ebbfa3864571f5af6346a9fda5bfc399198ce78f7e6b3c93e9c6c8273
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.20.1.tgz
version: 0.20.1
- apiVersion: v2
appVersion: 0.20.0
created: "2026-08-16T03:38:50.321868599Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: b53b29a361b0ba963cbf38d2623b2072d088d30bd0ecffc3525ea1f06d2371cd
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.20.0.tgz
version: 0.20.0
- apiVersion: v2
appVersion: 0.19.0
created: "2026-08-16T03:38:50.321351597Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: a13e5fa61478c76d95cc515fb2aa5fc7343cfc4203c10d1597fbb7531fd57696
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.19.0.tgz
version: 0.19.0
- apiVersion: v2
appVersion: 0.18.7
created: "2026-08-16T03:38:50.321169261Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 77476ba55ee8c171d2a09eddc3a3a36d8d5eb20d68127a00540e29a0819eadf3
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.18.7.tgz
version: 0.18.7
- apiVersion: v2
appVersion: 0.18.6
created: "2026-08-16T03:38:50.320993176Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 3c883f9f36c98ce6eecd6ee31c726a67f3fae71e78db67a001033115db532af9
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.18.6.tgz
version: 0.18.6
- apiVersion: v2
appVersion: 0.18.5
created: "2026-08-16T03:38:50.320819745Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: ff3bb08355cd640ff6c0f066cc541e103749fbc2cd09bf1a88590184f837df73
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.18.5.tgz
version: 0.18.5
- apiVersion: v2
appVersion: 0.18.4
created: "2026-08-16T03:38:50.320642575Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 401dc7891e83a720addb337c503e3b44add141af9a8ce0a9cbf2a6195c5faa52
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.18.4.tgz
version: 0.18.4
- apiVersion: v2
appVersion: 0.18.3
created: "2026-08-16T03:38:50.320461721Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: e1c28ee0fe27e7d104da413fc13f757e44a5a7eec3796493340f9fb3976b4d6a
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.18.3.tgz
version: 0.18.3
- apiVersion: v2
appVersion: 0.18.2
created: "2026-08-16T03:38:50.320270938Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 78cc8e9df52abc3e44c9e6e3283e472b3733baec97498fc5744a028d29e457fc
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.18.2.tgz
version: 0.18.2
- apiVersion: v2
appVersion: 0.17.0
created: "2026-08-16T03:38:50.320088722Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 31e32db71a22182e0c2076b4de7672817fed596118c62a0aaf847ac58205814d
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.17.0.tgz
version: 0.17.0
- apiVersion: v2
appVersion: 0.16.0
created: "2026-08-16T03:38:50.319878393Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 63761cc729f7ec213c032e18b9188751bf6d6cfdd49fbfaab506e896d8642dee
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.16.0.tgz
version: 0.16.0
- apiVersion: v2
appVersion: 0.15.0
created: "2026-08-16T03:38:50.319646735Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 395e8ccc2deb5fa700bc3127c88592a2238076744d1d0153cf171db59c7ba321
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.15.0.tgz
version: 0.15.0
- apiVersion: v2
appVersion: 0.14.0
created: "2026-08-16T03:38:50.319426748Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: b3d300e071cde5c9456eee433c786478266aab9cf58bea5e8ada173e4ecded18
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.14.0.tgz
version: 0.14.0
- apiVersion: v2
appVersion: 0.13.0
created: "2026-08-16T03:38:50.319195021Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: b9aa3317eb56874c64f35118942e33f28e478e4d5454cfffc1d22247be16e632
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.13.0.tgz
version: 0.13.0
- apiVersion: v2
appVersion: 0.12.1
created: "2026-08-16T03:38:50.318971078Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: a94f2379f005e2a67cf767f4c30ca34f775d58654b6a8c47a121457889bac6ea
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.12.1.tgz
version: 0.12.1
- apiVersion: v2
appVersion: 0.12.0
created: "2026-08-16T03:38:50.318542336Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 1f49f786d2f4e532c01b729bd0d6a44ff9a65cdb7dfbe74736bbc49ba7b1c682
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.12.0.tgz
version: 0.12.0
- apiVersion: v2
appVersion: 0.11.2
created: "2026-08-16T03:38:50.31795599Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 245b2049c269a8f2e809e7e41aae237880bdddb98ef9f94d1a2426a6c82ef375
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.11.2.tgz
version: 0.11.2
- apiVersion: v2
appVersion: 0.11.1
created: "2026-08-16T03:38:50.317784034Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: d4551fdf330e6b9422b3aae9b589406efa2d2ccda0bb2d2d0d9682e0e799d717
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.11.1.tgz
version: 0.11.1
- apiVersion: v2
appVersion: 0.11.0
created: "2026-08-16T03:38:50.317615513Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 1143c4f1458c960e3f3ce7ba993d0cdad0e0023322b01a4d501304f3e1cd2deb
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.11.0.tgz
version: 0.11.0
- apiVersion: v2
appVersion: 0.10.0
created: "2026-08-16T03:38:50.317444604Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 12e4d3c55f3781bf6e2826f6ab01aef7c553a790412d83a26329cbade2437b88
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.10.0.tgz
version: 0.10.0
- apiVersion: v2
appVersion: 0.9.2
created: "2026-08-16T03:38:50.327359241Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 39d88dce4a85f8934df8a44e075b2a6d8fa19ad221b4a1e7a7c6c603e9d65b9d
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.9.2.tgz
version: 0.9.2
- apiVersion: v2
appVersion: 0.9.1
created: "2026-08-16T03:38:50.327192604Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 8ebd80c1fb0def170357f5cbb3a729c129abd03d15af8020b1d73510482e1ae2
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.9.1.tgz
version: 0.9.1
- apiVersion: v2
appVersion: 0.9.0
created: "2026-08-16T03:38:50.327026093Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 87995b922a9dcc77b4c4d764b78fa68f3d604ffdf59fb848cfa7e804e97380fe
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.9.0.tgz
version: 0.9.0
- apiVersion: v2
appVersion: 0.8.0
created: "2026-08-16T03:38:50.326856196Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: bb3c7d9798db2ef4cb8ff96e9dd8b95e2f6484cee2385b1d5bbb4193d34841ad
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.8.0.tgz
version: 0.8.0
- apiVersion: v2
appVersion: 0.7.11
created: "2026-08-16T03:38:50.325347538Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 579d3ac3f056abe3993d72dee1c521f5529c1a52883e0300ca3fe74326a66daa
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.7.11.tgz
version: 0.7.11
- apiVersion: v2
appVersion: 0.7.10
created: "2026-08-16T03:38:50.325178394Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 25cc6058bc04f5488297e819a32abe0d18f3b56289ff9ab8b7c88f959831e9e2
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.7.10.tgz
version: 0.7.10
- apiVersion: v2
appVersion: 0.7.9
created: "2026-08-16T03:38:50.326693473Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 370ad4e2feaf74a38c0d5c9f86d75d8b7f17d9a7b5b2b814739bfb3c159477cd
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.7.9.tgz
version: 0.7.9
- apiVersion: v2
appVersion: 0.7.8
created: "2026-08-16T03:38:50.326527129Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: d5dc7e14429bb09941b38195df65afd501b17e2faae06de6c9473f71c77e4505
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.7.8.tgz
version: 0.7.8
- apiVersion: v2
appVersion: 0.7.7
created: "2026-08-16T03:38:50.326351696Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 8b1950b7cbcb9a63a7beb6c0da19938f4553b6b74a265143d9cc324cc45bb83d
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.7.7.tgz
version: 0.7.7
- apiVersion: v2
appVersion: 0.7.6
created: "2026-08-16T03:38:50.326188386Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: af738a77423f1f397fbc65d3822d98a0ce8dbd96bb7ed32b2a2e3d72d39285f5
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.7.6.tgz
version: 0.7.6
- apiVersion: v2
appVersion: 0.7.5
created: "2026-08-16T03:38:50.326025898Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 0a0205d797c4623275fd141514198c21d0f633470f01b09de5ceb12aa80fb021
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.7.5.tgz
version: 0.7.5
- apiVersion: v2
appVersion: 0.7.4
created: "2026-08-16T03:38:50.325861495Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: f4c304e37895ef7ccf47bede0223d2a3327fc87f0192b03b8a320ce9af3e3735
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.7.4.tgz
version: 0.7.4
- apiVersion: v2
appVersion: 0.7.3
created: "2026-08-16T03:38:50.325696119Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: fc617999477d708b6d8205a8c2a95112f8f53508efaf78942d3e3f4f46926888
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.7.3.tgz
version: 0.7.3
- apiVersion: v2
appVersion: 0.7.2
created: "2026-08-16T03:38:50.325526031Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 9288f8e7cec9b4dbf6c8950a4ef96d67c4c64cee69a937ae3871ae9417e96ed5
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.7.2.tgz
version: 0.7.2
- apiVersion: v2
appVersion: 0.7.1
created: "2026-08-16T03:38:50.325010378Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: b95ac8fc45f61189d59d34f81cef4dd82b5546aa4064c1d650415c7335a0f35e
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.7.1.tgz
version: 0.7.1
- apiVersion: v2
appVersion: 0.7.0
created: "2026-08-16T03:38:50.324837448Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: e708cc232f0809e2d234642c17e7789fbb0818960f645271eb0b6556f253cd50
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.7.0.tgz
version: 0.7.0
- apiVersion: v2
appVersion: 0.6.0
created: "2026-08-16T03:38:50.324662817Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 883f093dc78e14bc61b11b38d9f89fa92a5e05889bfd9ed89238ef0e0f51a12c
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.6.0.tgz
version: 0.6.0
- apiVersion: v2
appVersion: 0.5.4
created: "2026-08-16T03:38:50.324486731Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 609d8d38ef105e17b69890a22f0225c5a0ee44581b8dae1980dea28d4f47d771
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.5.4.tgz
version: 0.5.4
- apiVersion: v2
appVersion: 0.5.3
created: "2026-08-16T03:38:50.324278145Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: c7074263d6ae57fd6b3b4088119426f1c8538464fb7128a1b0569043d9936fd2
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.5.3.tgz
version: 0.5.3
- apiVersion: v2
appVersion: 0.5.2
created: "2026-08-16T03:38:50.324063611Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 5ea55d332c2dffb92f0d0d79f938249be2f714f2dd8c2ff26c0cc72742a89015
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.5.2.tgz
version: 0.5.2
- apiVersion: v2
appVersion: 0.5.1
created: "2026-08-16T03:38:50.323517138Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 9d081bc856566aeafd2ceba7d035876122dfefd8503bc51c6b926b8baf347a21
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.5.1.tgz
version: 0.5.1
- apiVersion: v2
appVersion: 0.5.0
created: "2026-08-16T03:38:50.32290796Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 49529706342b6624a34b039c93068563c9a0eb817cb37232f9450ff018a29ffc
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.5.0.tgz
version: 0.5.0
- apiVersion: v2
appVersion: 0.4.0
created: "2026-08-16T03:38:50.322747217Z"
description: Auto-generated infrastructure diagrams from live Kubernetes state
digest: 8ce9324a1561eef248f1ca4a1994813ff45e057741007c6e2dac78ff406f014e
name: cluster-vision
urls:
- https://fredericrous.github.io/charts/packages/cluster-vision-0.4.0.tgz
version: 0.4.0