-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathindex.yaml
1449 lines (1449 loc) · 45.6 KB
/
index.yaml
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:
dex:
- annotations:
artifacthub.io/changes: |
- kind: changed
description: "Dex 2.39.1 release"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.39.0
apiVersion: v2
appVersion: 2.39.1
created: "2024-04-09T12:34:47.269869876Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: f7640a5a9d3b6cd9166db694c4df3246be0be0bebb94ad9928deeb42a233dab8
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.17.1/dex-0.17.1.tgz
version: 0.17.1
- annotations:
artifacthub.io/changes: |
- kind: changed
description: "Dex 2.39.0 release"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.39.0
apiVersion: v2
appVersion: 2.39.0
created: "2024-03-22T20:52:13.319423311Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 5e7ca574b1755a5adb8259dfe098fbf8cad66369e2c6a819024579af57218739
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.17.0/dex-0.17.0.tgz
version: 0.17.0
- annotations:
artifacthub.io/changes: |
- kind: changed
description: "Dex 2.38.0 release"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.38.0
apiVersion: v2
appVersion: 2.38.0
created: "2024-01-25T14:42:47.935333933Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: d19c81db0792a12013d7e8a40a51562edf6c113884d4685af6cfede74f14eb2b
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.16.0/dex-0.16.0.tgz
version: 0.16.0
- annotations:
artifacthub.io/changes: |
- kind: added
description: "Add default values for path and honorLabels to ServiceMonitor"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.37.0
apiVersion: v2
appVersion: 2.37.0
created: "2023-08-17T20:51:07.404644259Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 8100ba92ee85ee1b25298bcf9ea72f09a004ef502e43f38e45bf793cae5b88f3
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.15.3/dex-0.15.3.tgz
version: 0.15.3
- annotations:
artifacthub.io/changes: |
- kind: fixed
description: "Fixed error stemming from the formatting of the new autoscaling API version"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.37.0
apiVersion: v2
appVersion: 2.37.0
created: "2023-07-10T21:06:29.96577053Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 57672e56e05e3816b4a671fcdf819c2c01e18fd16c41562bf1d1e5a20027774d
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.15.2/dex-0.15.2.tgz
version: 0.15.2
- annotations:
artifacthub.io/changes: |
- kind: added
description: "Add spec.revisionHistoryLimit config possibility for Deployment resource"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.37.0
apiVersion: v2
appVersion: 2.37.0
created: "2023-07-09T08:28:12.336833653Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: f6e8ebfaa58fcfd24f556caafdd23ed6dcef49351019ce28162adffdec1d3428
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.15.1/dex-0.15.1.tgz
version: 0.15.1
- annotations:
artifacthub.io/changes: |
- kind: changed
description: "Update Dex to 2.37.0"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.37.0
apiVersion: v2
appVersion: 2.37.0
created: "2023-07-07T16:55:59.682565759Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 753331636f28747e187eb6dd9945f334a0d132f727ea353c35510d8ff0f476f4
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.15.0/dex-0.15.0.tgz
version: 0.15.0
- annotations:
artifacthub.io/changes: |
- kind: added
description: "Use updated HorizontalPodAutoscaler API Version which is no longer served in K8s >=1.25"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.36.0
apiVersion: v2
appVersion: 2.36.0
created: "2023-06-27T16:20:28.912522489Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: fbc25bbc69421cd120b2f21de6d49177f706b43a601fbaba22b9986701f78a5b
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.14.3/dex-0.14.3.tgz
version: 0.14.3
- annotations:
artifacthub.io/changes: |
- kind: added
description: "Supporting custom labels/annotations on deployment/pod"
- kind: added
description: "Add metricRelabelings, scheme, tlsConfig, bearerTokenFile and relabelings to ServiceMonitor"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.36.0
apiVersion: v2
appVersion: 2.36.0
created: "2023-06-20T15:28:11.198029363Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 0746b36ef7d5806e87981d70f1d314c8b400adb4f157efadd554103682ec902a
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.14.2/dex-0.14.2.tgz
version: 0.14.2
- annotations:
artifacthub.io/changes: |
- kind: added
description: "Supporting template evaluation in ingress hosts"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.36.0
apiVersion: v2
appVersion: 2.36.0
created: "2023-04-06T07:54:40.388497263Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 88ca1ec3bcffa8039b4650f4330bbb487363b44eef26429d992ebbd3ebf15595
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.14.1/dex-0.14.1.tgz
version: 0.14.1
- annotations:
artifacthub.io/changes: |
- kind: added
description: "Common labels to all resources created by the chart"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.36.0
apiVersion: v2
appVersion: 2.36.0
created: "2023-03-20T15:28:28.318729577Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 5030ee8f115a9967cdae63901d1b4f52cca7d0a5f5f3cc340761728546d800da
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.14.0/dex-0.14.0.tgz
version: 0.14.0
- annotations:
artifacthub.io/changes: |
- kind: added
description: "Common labels to all resources created by the chart"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.35.3
apiVersion: v2
appVersion: 2.35.3
created: "2023-01-19T12:19:59.259259725Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 0fca995ccc9aee9a209312cd77d210be77dd12fc35d2fdd10103099f536cdffd
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.13.0/dex-0.13.0.tgz
version: 0.13.0
- annotations:
artifacthub.io/changes: |
- kind: changed
description: "Update Dex to 2.35.3"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.35.3
apiVersion: v2
appVersion: 2.35.3
created: "2022-10-16T18:11:33.214237388Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 8b5815c6dfbc5c2d7297c9a2039f44f924421ed849ff24ad511799a0ae84eead
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.12.1/dex-0.12.1.tgz
version: 0.12.1
- annotations:
artifacthub.io/changes: |
- kind: changed
description: "Update Dex to 2.35.1"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.35.1
apiVersion: v2
appVersion: 2.35.1
created: "2022-10-04T11:37:47.553055214Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: e41e009e59296ef9d23900fabc27e21fd0276da9b85149d6fe0b1384025c29b9
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.12.0/dex-0.12.0.tgz
version: 0.12.0
- annotations:
artifacthub.io/changes: |
- kind: added
description: "`networkPolicy` value to enable network policy and define optional custom Egress rules"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.34.0
apiVersion: v2
appVersion: 2.34.0
created: "2022-09-23T10:33:50.180518782Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 19bdaae4d0be9e5ea6c51754501964d9b7a7b4d51c8e6cac97c82b656ec4f0df
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.11.1/dex-0.11.1.tgz
version: 0.11.1
- annotations:
artifacthub.io/changes: |
- kind: changed
description: "Update Dex to 2.34.0"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.34.0
apiVersion: v2
appVersion: 2.34.0
created: "2022-09-16T07:00:03.23415939Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 612a4d097d5ef6912eb82458953b0adcf12575e1ac84b4186afff50141157e8e
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.11.0/dex-0.11.0.tgz
version: 0.11.0
- annotations:
artifacthub.io/changes: |
- kind: changed
description: "Update Dex to 2.33.0"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.33.0
apiVersion: v2
appVersion: 2.33.0
created: "2022-08-29T13:55:26.616400331Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 981967f7aa0bbf11ed311534297488043bf6a986513399834fc279a8c9eb6e55
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.10.0/dex-0.10.0.tgz
version: 0.10.0
- annotations:
artifacthub.io/changes: |
- kind: changed
description: "Update Dex to 2.32.0"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.32.0
apiVersion: v2
appVersion: 2.32.0
created: "2022-06-09T16:30:03.885917482Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 3d281937ce45b6a82e659751d5bc4d37bfb77a0474738c410f6fb455378df8a5
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.9.0/dex-0.9.0.tgz
version: 0.9.0
- annotations:
artifacthub.io/changes: |
- kind: changed
description: "Correct indentation for `ServiceMonitor` when using `serviceMonitor.labels`"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.31.1
apiVersion: v2
appVersion: 2.31.1
created: "2022-05-23T23:17:44.014870095Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: baee6d52dd7caff65158fc92c226d8b07347e08a41a1269e107ae7623733a03b
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.8.3/dex-0.8.3.tgz
version: 0.8.3
- annotations:
artifacthub.io/changes: |
- kind: changed
description: "Restore `ClusterRoleBinding` when using cluster scoped permissions"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.31.1
apiVersion: v2
appVersion: 2.31.1
created: "2022-04-06T08:08:12.90098362Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 0beb8cf4fc3dde6208e4c35c5015488f053bdbee9de54440d2e404ec91785e0b
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.8.2/dex-0.8.2.tgz
version: 0.8.2
- annotations:
artifacthub.io/changes: |
- kind: changed
description: "`ClusterRole` and `ClusterRoleBilding` to `Role` and `RoleBinding` to allow Deployments without ClusterPermissions"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.31.1
apiVersion: v2
appVersion: 2.31.1
created: "2022-04-05T19:52:00.553109719Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 4a00ae9777c33d46f14356e476a56e467e5aac7c35db3976a1403e20e67fe224
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.8.1/dex-0.8.1.tgz
version: 0.8.1
- annotations:
artifacthub.io/changes: |
- kind: changed
description: Updated Dex version
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.31.1
apiVersion: v2
appVersion: 2.31.1
created: "2022-04-04T09:29:46.451137247Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 821826d2c3ecc6469be7c9e37fb74375261834a30bdb2b8dd7ccffca7562421d
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.8.0/dex-0.8.0.tgz
version: 0.8.0
- annotations:
artifacthub.io/changes: |
- kind: added
description: Optional ServiceMonitor support
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.30.0
apiVersion: v2
appVersion: 2.30.0
created: "2022-04-04T09:06:01.450117316Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 28acd3482bcba1e7749f2089c4f906d7436f302de03eb93caffe187828472d7d
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.7.0/dex-0.7.0.tgz
version: 0.7.0
- annotations:
artifacthub.io/changes: |
- kind: fixed
description: "Fixed template rendering around error `nil pointer evaluating interface {}.topologySpreadConstraints`"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.30.0
apiVersion: v2
appVersion: 2.30.0
created: "2022-04-04T08:56:01.483209973Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 1608f1e37a2b13b5b1fbdb3f28663cb4e0b0351e0371d02ee47f3dac82e9f964
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.6.7/dex-0.6.7.tgz
version: 0.6.7
- annotations:
artifacthub.io/changes: |
- kind: added
description: "`topologySpreadConstraints` value to allow use topology spread constraints in the Dex deployment"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.30.0
apiVersion: v2
appVersion: 2.30.0
created: "2022-03-31T11:43:50.966864671Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: bd8fd6e5da5d4ccbc1293bc4851da905a1558ae42f7073342a3b7194f4a462e6
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.6.6/dex-0.6.6.tgz
version: 0.6.6
- annotations:
artifacthub.io/changes: |
- kind: added
description: "`envVars` value to allow secret referencing on environment variables"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.30.0
apiVersion: v2
appVersion: 2.30.0
created: "2022-01-08T18:27:27.906849167Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: cc78d8f2129f3a21e62cc237f22f44f83dc646c11c474d753447aaa92cdd0bcb
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.6.5/dex-0.6.5.tgz
version: 0.6.5
- annotations:
artifacthub.io/changes: |
- kind: added
description: "`strategy` value to control the Dex deployment strategy"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.30.0
apiVersion: v2
appVersion: 2.30.0
created: "2022-01-04T10:15:14.105194625Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 6cad561fbe7e4d9fdffe4ecf564ad5ef9b3080f1df262c2e999182f18d6afacf
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.6.4/dex-0.6.4.tgz
version: 0.6.4
- annotations:
artifacthub.io/changes: |
- kind: added
description: "`clusterIP` value to control the IP when using ClusterIP service type"
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.30.0
apiVersion: v2
appVersion: 2.30.0
created: "2021-08-31T00:04:17.236327292Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: 4275a0a8ab3f730d0cb7406896650f187a02fc61369cfa36360f2c4955891d99
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.6.3/dex-0.6.3.tgz
version: 0.6.3
- annotations:
artifacthub.io/changes: |
- kind: added
description: `clusterIP` value to control the IP when using ClusterIP service type
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.30.0
apiVersion: v2
appVersion: 2.30.0
created: "2021-08-30T22:01:09.486110614Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: ee6cb8cd90fbc375dbaeecd93d0f8e489ec5b158753de5ad2253f570d9942a67
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.6.2/dex-0.6.2.tgz
version: 0.6.2
- annotations:
artifacthub.io/changes: |
- kind: changed
description: Only add `config/checksum` annotation if a config secret is created
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.30.0
apiVersion: v2
appVersion: 2.30.0
created: "2021-08-30T21:40:03.894609211Z"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable
connectors.
digest: c62a074a0d5ff5bec59cce4669f81af0b04d7ca5b4f5981a00f6ae61516ccfb2
home: https://dexidp.io/
icon: https://dexidp.io/favicon.png
keywords:
- oidc
- oauth
- identity-provider
- saml
kubeVersion: '>=1.14.0-0'
maintainers:
- email: [email protected]
name: sagikazarmark
url: https://sagikazarmark.hu
name: dex
sources:
- https://github.com/dexidp/dex
- https://github.com/dexidp/helm-charts/tree/master/charts/dex
type: application
urls:
- https://github.com/dexidp/helm-charts/releases/download/dex-0.6.1/dex-0.6.1.tgz
version: 0.6.1
- annotations:
artifacthub.io/changes: |
- kind: changed
description: Dex v2.30.0 release
artifacthub.io/images: |