-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.yaml
1020 lines (1020 loc) · 33 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:
cpi-delta:
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.011727+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: a5cde60e8ddedadc9cfb177390116da9545aee67940ccd76f826d637547c4a9b
name: cpi-delta
type: application
urls:
- cpi-delta-0.8.1.tgz
version: 0.8.1
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.011431+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: 646dd1e38f1bc6c257e4915b3a633534f3893d2704c70f1a81a7b229d40afbbf
name: cpi-delta
type: application
urls:
- cpi-delta-0.8.0.tgz
version: 0.8.0
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.011136+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: d764876adad69d1ebc32f46bf168ae1066a6f4280b519eab6a353227b47e5f9f
name: cpi-delta
type: application
urls:
- cpi-delta-0.7.6.tgz
version: 0.7.6
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.010848+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: a0a5fdeaadd3b4a6934ca6e166013ac71f9a033100a79c141074ba53456d67ca
name: cpi-delta
type: application
urls:
- cpi-delta-0.7.5.tgz
version: 0.7.5
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.010538+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: 8f028bcb2acc32e7c225236032843ac26859e897258243638c3a906f5a91052e
name: cpi-delta
type: application
urls:
- cpi-delta-0.7.4.tgz
version: 0.7.4
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.010128+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: cb13f9343234c1db81662293e110b02f795075c3294fecfc1526671f28c073f6
name: cpi-delta
type: application
urls:
- cpi-delta-0.7.3.tgz
version: 0.7.3
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.008676+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: bb3bd42383e9c95f8434cec81655659507914bfed3df40b0d239f70eb13fbc38
name: cpi-delta
type: application
urls:
- cpi-delta-0.7.2.tgz
version: 0.7.2
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.008342+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: c48408ac64195507ef029591428ecdb7b8951fa12ae7b90a44f8683994bd3902
name: cpi-delta
type: application
urls:
- cpi-delta-0.7.1.tgz
version: 0.7.1
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.008006+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: b0330841fae602488f27e457b2b8855530a84412f06051f5785fc8b907050079
name: cpi-delta
type: application
urls:
- cpi-delta-0.7.0.tgz
version: 0.7.0
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.007699+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: 15bb5db37e7dbd084ed1b565b90ba757ceb0a6d2ec233083a71a4dad96a4a842
name: cpi-delta
type: application
urls:
- cpi-delta-0.6.6.tgz
version: 0.6.6
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.007389+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: af69b6274b12b5824502c2370090fb6f5a0ccbcdcd6a0ec8de2bc92df28e7a68
name: cpi-delta
type: application
urls:
- cpi-delta-0.6.5.tgz
version: 0.6.5
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.00707+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: 40563756f64bdca7b7a5eac48158c9320c29faaa45848369bac9c7d396926cd2
name: cpi-delta
type: application
urls:
- cpi-delta-0.6.4.tgz
version: 0.6.4
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.006587+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: 6ba67c742f748c20d6aa30469341fd6f8b1b53be5475b86836daf1c58d3d864f
name: cpi-delta
type: application
urls:
- cpi-delta-0.6.3.tgz
version: 0.6.3
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.006279+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: a9cebcbe0cfd993b87485b462bf8555716d8695fe62fcb157c6299ee2cc0b600
name: cpi-delta
type: application
urls:
- cpi-delta-0.6.2.tgz
version: 0.6.2
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.005827+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: d622e315121e31b1e38cd4da68474fb850976dba17610bea2fbfa9beb721daa4
name: cpi-delta
type: application
urls:
- cpi-delta-0.6.1.tgz
version: 0.6.1
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.005384+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: 1b4c8ec80e7c5b84bd9ccc479e859cafad2b398dd058de52733a9a7e591bb58d
name: cpi-delta
type: application
urls:
- cpi-delta-0.6.0.tgz
version: 0.6.0
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.005007+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: 76094db06e101476b8b381f2c1daa451ea738d117c64c2bca8474386302861fd
name: cpi-delta
type: application
urls:
- cpi-delta-0.5.8.tgz
version: 0.5.8
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.00473+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: 0bf6475cf02ef70a7760ab251cca069a12637bf738b66ff1fa0e4a541ce6a6cb
name: cpi-delta
type: application
urls:
- cpi-delta-0.5.7.tgz
version: 0.5.7
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.004411+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: c61031c5112fd597a90d020c1697939223d761dce02cd26de76274e645e3bed1
name: cpi-delta
type: application
urls:
- cpi-delta-0.5.6.tgz
version: 0.5.6
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.004099+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: 25dd64182cc15eaa4215d0156ac810a73ce44d1f450ce388f2cb6520edd78ea3
name: cpi-delta
type: application
urls:
- cpi-delta-0.5.5.tgz
version: 0.5.5
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.003796+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: d039706a92cc353ca0ce651a64601d3180a8d3dfc48b0886269dc99113ff01f7
name: cpi-delta
type: application
urls:
- cpi-delta-0.5.4.tgz
version: 0.5.4
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.00346+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: 3319ffba60c4071bf69d4397ff9095fa9ee6a0dc05caf69a3cb5733588d32311
name: cpi-delta
type: application
urls:
- cpi-delta-0.5.3.tgz
version: 0.5.3
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.001354+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: 6b9ea711ed2a91b49089c4ac56eff0ea97b2396fc4b0ac88e4e323d0e256f789
name: cpi-delta
type: application
urls:
- cpi-delta-0.5.2.tgz
version: 0.5.2
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.000958+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: 83018dd2d363211efa6fee0bcc3a2ea789288c83081a5d930eee30e095e7245c
name: cpi-delta
type: application
urls:
- cpi-delta-0.5.1.tgz
version: 0.5.1
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.000551+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: 0768fc71cab91aee604652ebe3a23d14a169047fa64283526562fd75c43f3eb7
name: cpi-delta
type: application
urls:
- cpi-delta-0.5.0.tgz
version: 0.5.0
cpi-delta-registry:
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.011972+08:00"
description: Customer Provisioned Infrastructure Delta for Kubernetes
digest: 5a1183f8d1b474611c8b8f536a8dd46ef80bb32401350e97c6ee4c72428f43e6
name: cpi-delta-registry
type: application
urls:
- cpi-delta-registry-0.1.7.tgz
version: 0.1.7
cpi-edge:
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.015595+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: 8eef14f978ac0dbb8c6742e6e8216f40cb1e56243749a05fefb8ddc77e801124
name: cpi-edge
type: application
urls:
- cpi-edge-0.11.8.tgz
version: 0.11.8
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.015289+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: 948063254516ecbdbc508944230399d183021e435773385b808d7da56277125f
name: cpi-edge
type: application
urls:
- cpi-edge-0.11.7.tgz
version: 0.11.7
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.014972+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: cae65e61b0b25efc89fbe50b7b0d4d32a3e8695ad24d636819e50ca6f01ea18e
name: cpi-edge
type: application
urls:
- cpi-edge-0.11.6.tgz
version: 0.11.6
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.014646+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: 479aa2852f9df81e5169d47417c9fc7403e630db45c6947a4dc1a431216cf780
name: cpi-edge
type: application
urls:
- cpi-edge-0.11.5.tgz
version: 0.11.5
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.014291+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: 4c033ef6ec0223121150954a78d59499c942184b3c2f25e9939fdf5f44852c1f
name: cpi-edge
type: application
urls:
- cpi-edge-0.11.4.tgz
version: 0.11.4
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.013933+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: 11b478cfee9cc25296c4346c30f5629d36516697fd039b66277b140973649ac1
name: cpi-edge
type: application
urls:
- cpi-edge-0.11.3.tgz
version: 0.11.3
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.013636+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: c6cde12a4fae33464383f751baafec4c74653193a1c70a2b854b2faada2ebdd4
name: cpi-edge
type: application
urls:
- cpi-edge-0.11.2.tgz
version: 0.11.2
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.013343+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: 319f7c78974de20888b2a2953901a2421e9d388ad9bc27678714aa04dd7be7df
name: cpi-edge
type: application
urls:
- cpi-edge-0.11.1.tgz
version: 0.11.1
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.012885+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: e06c0503fe423fe5956490b3b14e77b093c873d0d9901e0bf9175ff070b815e5
name: cpi-edge
type: application
urls:
- cpi-edge-0.11.0.tgz
version: 0.11.0
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.012576+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: bc9b88f70421ee7b785e1287a84c6cd9db1b312f4ab8e3a5663851aee9fe0795
name: cpi-edge
type: application
urls:
- cpi-edge-0.10.1.tgz
version: 0.10.1
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.012274+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: 10c483f9cf470c13b8818f809d0832e6534a5efc759c5e38fc15ed28ce76f740
name: cpi-edge
type: application
urls:
- cpi-edge-0.10.0.tgz
version: 0.10.0
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.021751+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: b85d2406a67ea10e02673d6ee0e2eae4f738d6af46e60d47d04d853fd2818e39
name: cpi-edge
type: application
urls:
- cpi-edge-0.9.5.tgz
version: 0.9.5
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.021187+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: 645d2fda5d6732785b19a42fa71c82e145442b3276f00da51d0d6c67940f3656
name: cpi-edge
type: application
urls:
- cpi-edge-0.9.4.tgz
version: 0.9.4
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.020701+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: 7d9657ee2405d118e7c2f81b1e3dab20feba301cabb8206a3dc54ccc86cd56a5
name: cpi-edge
type: application
urls:
- cpi-edge-0.9.3.tgz
version: 0.9.3
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.020228+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: 3dea50cf9cf8c39922018442a6f4a2642bda43437eb7c53b7358a9110e95d3cb
name: cpi-edge
type: application
urls:
- cpi-edge-0.9.2.tgz
version: 0.9.2
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.019843+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: b648f8dfdd872f3a39b0f0c6f77b64aebc375ee1d8671fdd8c8bd3fa6bdff5eb
name: cpi-edge
type: application
urls:
- cpi-edge-0.9.1.tgz
version: 0.9.1
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.019301+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: c047ce2b14910fc795defe87243f76cde734b607e1e26c425aead3224fa4abfc
name: cpi-edge
type: application
urls:
- cpi-edge-0.9.0.tgz
version: 0.9.0
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.018923+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: 54d1dcee0895db1fbeb7a49e1ca73542c890c2c22eff70dfba56215eefae34e5
name: cpi-edge
type: application
urls:
- cpi-edge-0.8.4.tgz
version: 0.8.4
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.018542+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: 6d50817a12c608a8ba16251087e2b3c6b5a7dc27ad728a2da02b9a05ee5b8ca7
name: cpi-edge
type: application
urls:
- cpi-edge-0.8.3.tgz
version: 0.8.3
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.018159+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: 1b678097b6d885ba57057b5811b9f564c0ba97f22234bece79ce5643c70e32dc
name: cpi-edge
type: application
urls:
- cpi-edge-0.8.2.tgz
version: 0.8.2
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.017765+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: efebbd9bc46db9d38f6ddd82293f19a9584dd934bb66f960a9fc08f1ee154604
name: cpi-edge
type: application
urls:
- cpi-edge-0.8.1.tgz
version: 0.8.1
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.01735+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: 8a9bf06019a213ba063c402e49f19568674f14078b5ef611b393181787c69042
name: cpi-edge
type: application
urls:
- cpi-edge-0.8.0.tgz
version: 0.8.0
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.017017+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: fac812751495bea8276e0c561430619ea47e5204dc51a2818152ec46276ddab8
name: cpi-edge
type: application
urls:
- cpi-edge-0.7.1.tgz
version: 0.7.1
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.015914+08:00"
description: Customer Provisioned Infrastructure Edge for Kubernetes
digest: 4ad9aea3d0b287b539c29bacddff885308ca29b5c9cc3e5c1d27257c37bf9a94
name: cpi-edge
type: application
urls:
- cpi-edge-0.7.0.tgz
version: 0.7.0
cpi-edge-urid:
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.022778+08:00"
description: Customer Provisioned Infrastructure Edge-URID for Kubernetes
digest: 72d17a47df9146526a3b0b6a160140800a1cce7ba731079150b90ffead83f698
name: cpi-edge-urid
type: application
urls:
- cpi-edge-urid-0.12.2.tgz
version: 0.12.2
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.022443+08:00"
description: Customer Provisioned Infrastructure Edge-URID for Kubernetes
digest: 54741490d56dc3a333316ea12234565076f785078bdd14639002cad63c2c3d48
name: cpi-edge-urid
type: application
urls:
- cpi-edge-urid-0.12.1.tgz
version: 0.12.1
- apiVersion: v2
appVersion: 1.0.2
created: "2023-09-12T17:31:09.022099+08:00"
description: Customer Provisioned Infrastructure Edge-URID for Kubernetes
digest: f77beb368f43840bf1ceeea9e3febc294d93f82729e24ab290d9f2302211013f
name: cpi-edge-urid
type: application
urls:
- cpi-edge-urid-0.12.0.tgz
version: 0.12.0
cpi-postgresql:
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.026128+08:00"
description: Customer Provisioned Infrastructure PostgreSQL for Kubernetes
digest: e3b16d6a1d284d36d74400b10c2383f01aa1edd6b8f4f89a0e367abc588f7f7a
name: cpi-postgresql
type: application
urls:
- cpi-postgresql-0.9.0.tgz
version: 0.9.0
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.025947+08:00"
description: Customer Provisioned Infrastructure PostgreSQL for Kubernetes
digest: 61e104f83072f54fed277d3b083fa8bee070042b6d39031f7591913730b6955e
name: cpi-postgresql
type: application
urls:
- cpi-postgresql-0.8.1.tgz
version: 0.8.1
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.025764+08:00"
description: Customer Provisioned Infrastructure PostgreSQL for Kubernetes
digest: 7c8e75030dcc76f5f269d43a6d8e2532c866ca6301d54772a54a68e96f48edeb
name: cpi-postgresql
type: application
urls:
- cpi-postgresql-0.8.0.tgz
version: 0.8.0
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.025578+08:00"
description: Customer Provisioned Infrastructure PostgreSQL for Kubernetes
digest: 2d938a19c5cee10fc21ed42efa25ce17e1c53c3c670c4959bb66f4b2b0569cac
name: cpi-postgresql
type: application
urls:
- cpi-postgresql-0.7.0.tgz
version: 0.7.0
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.02526+08:00"
description: Customer Provisioned Infrastructure PostgreSQL for Kubernetes
digest: c534e04f23509fd8dd50352e735c969a76d2c95863ddf34ca0b38fd9cc7f4416
name: cpi-postgresql
type: application
urls:
- cpi-postgresql-0.6.1.tgz
version: 0.6.1
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.025067+08:00"
description: Customer Provisioned Infrastructure PostgreSQL for Kubernetes
digest: 65576c9bbe4e67bbe053677e5270526d193c0feb9f6c060b97fb5f897d25df87
name: cpi-postgresql
type: application
urls:
- cpi-postgresql-0.6.0.tgz
version: 0.6.0
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.024863+08:00"
description: Customer Provisioned Infrastructure PostgreSQL for Kubernetes
digest: 6679c860e43dd287556b36826efc1b905cdf5a030f85f4409b07deb0fe012559
name: cpi-postgresql
type: application
urls:
- cpi-postgresql-0.5.2.tgz
version: 0.5.2
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.024675+08:00"
description: Customer Provisioned Infrastructure PostgreSQL for Kubernetes
digest: dbaae588cf8a500db816e2ea3ffdab4f90ac88ca0e6934fc2e269cf76d30dfda
name: cpi-postgresql
type: application
urls:
- cpi-postgresql-0.5.1.tgz
version: 0.5.1
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.024484+08:00"
description: Customer Provisioned Infrastructure PostgreSQL for Kubernetes
digest: e8dcc8758625c497cc78d437f3bb8f3a027a346ef01ff88ec4cbaa1e27bb9a0f
name: cpi-postgresql
type: application
urls:
- cpi-postgresql-0.5.0.tgz
version: 0.5.0
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.024285+08:00"
description: Customer Provisioned Infrastructure PostgreSQL for Kubernetes
digest: 8f250150c12a790659fcc592c8c44ca28e1cd5aa6f993263ec817cfa8a4bead9
name: cpi-postgresql
type: application
urls:
- cpi-postgresql-0.4.0.tgz
version: 0.4.0
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.023587+08:00"
description: Customer Provisioned Infrastructure PostgreSQL for Kubernetes
digest: af2442176eddab4114d6af7fed29ec943978d9b2501492dfba2f3e75c52c819b
name: cpi-postgresql
type: application
urls:
- cpi-postgresql-0.3.1.tgz
version: 0.3.1
- apiVersion: v2
appVersion: 1.16.0
created: "2023-09-12T17:31:09.023041+08:00"
description: Customer Provisioned Infrastructure PostgreSQL for Kubernetes
digest: f91485382b6f463f5bf4a722026e09f71798856fb4851643db2b2b520c7e0a73
name: cpi-postgresql
type: application
urls:
- cpi-postgresql-0.0.1337.tgz
version: 0.0.1337
motion:
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.032233+08:00"
description: Project Motion charts for Kubernetes
digest: fc31e402ec1d5527cb403f15e1d624d523abb0afc883adfe4d00b385f5ca0598
name: motion
type: application
urls:
- motion-0.3.5.tgz
version: 0.3.5
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.031907+08:00"
description: Project Motion charts for Kubernetes
digest: b13e444d973fa7c9f9b2ca141069c545a049409358087aada150b1eaa00f43da
name: motion
type: application
urls:
- motion-0.3.4.tgz
version: 0.3.4
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.031418+08:00"
description: Project Motion charts for Kubernetes
digest: a09cd9df8040b9e9ce7f7945a5b90528ec101a3bc8bbef2425030da6c8ad642e
name: motion
type: application
urls:
- motion-0.3.3.tgz
version: 0.3.3
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.030964+08:00"
description: Project Motion charts for Kubernetes
digest: acb7b3fc65606708392c6eac872941a6568b6f4bfce3a5db0c5a8c639a1b2f97
name: motion
type: application
urls:
- motion-0.3.2.tgz
version: 0.3.2
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.030186+08:00"
description: Project Motion charts for Kubernetes
digest: 4f6b9399931c6a0c43054c0cf191276022703b43b7a99006a280b72bc0f51c97
name: motion
type: application
urls:
- motion-0.3.1.tgz
version: 0.3.1
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.029707+08:00"
description: Project Motion charts for Kubernetes
digest: 650ff1cae434c2522b0408b858f59456c73160da0aa14d552a9e1625dff371ab
name: motion
type: application
urls:
- motion-0.3.0.tgz
version: 0.3.0
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.029264+08:00"
description: Project Motion charts for Kubernetes
digest: 0f3a0c5e63bc4ea446137714146724c2073692f6a3fb7acbbd5c8cb7439ada35
name: motion
type: application
urls:
- motion-0.2.7.tgz
version: 0.2.7
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.028766+08:00"
description: Project Motion charts for Kubernetes
digest: 289305802db789f2a39b62377c4c116f7800203e46b2e5097752542c28421d86
name: motion
type: application
urls:
- motion-0.2.6.tgz
version: 0.2.6
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.028241+08:00"
description: Project Motion charts for Kubernetes
digest: bc15fae84edf5e3894813bbb5ad75686b3b3de41fb65cf7220d08f2144d500e5
name: motion
type: application
urls:
- motion-0.2.5.tgz
version: 0.2.5
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.027969+08:00"
description: Project Motion charts for Kubernetes
digest: fe431aacc4b24c2a6c29184b9f4e624bc76e0641931465254c817ce898546a20
name: motion
type: application
urls:
- motion-0.2.4.tgz
version: 0.2.4
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.027696+08:00"
description: Project Motion charts for Kubernetes
digest: 97424538eeb0285bd314e551970a87cef101fa4ecd88607bd28907f4d8cd9927
name: motion
type: application
urls:
- motion-0.2.3.tgz
version: 0.2.3
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.027416+08:00"
description: Project Motion charts for Kubernetes
digest: bb3954cb257a9d48991e5c6d22e446f3a429c7789c8fc73c08ddfcce7265ecb8
name: motion
type: application
urls:
- motion-0.2.2.tgz
version: 0.2.2
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.027162+08:00"
description: Project Motion charts for Kubernetes
digest: 8493faf9b7ba6ff6b449fd9f64eb6d824149097b6be11d9f167d5f962341236c
name: motion
type: application
urls:
- motion-0.2.1.tgz
version: 0.2.1
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.026908+08:00"
description: Project Motion charts for Kubernetes
digest: 4ea543dabcf593fe5a407c88a0b1eff02ecdc695e6d80ac2078145762ee1cc4f
name: motion
type: application
urls:
- motion-0.2.0.tgz
version: 0.2.0
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.026653+08:00"
description: Project Motion charts for Kubernetes
digest: 8eac7763b749a89287803e9cc53d74edfc537ecca2a728089cdbc3cea83a1cd3
name: motion
type: application
urls:
- motion-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.02639+08:00"
description: Project Motion charts for Kubernetes
digest: 579928424d3c518c7e2e01f9c524473392eaa9941237dbbea47e6e75c4745115
name: motion
type: application
urls:
- motion-0.1.0.tgz
version: 0.1.0
singularity:
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.039396+08:00"
description: Singularity node charts for Kubernetes
digest: 0a192882a46f3fa458b6d315f8928db10250065136ab544795166eaad3c5ed41
name: singularity
type: application
urls:
- singularity-0.3.3.tgz
version: 0.3.3
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.038956+08:00"
description: Singularity node charts for Kubernetes
digest: aa6c9c27f0386d69d8dc30bc4575210f4dada5bc0e6ade13156fa404025d39d8
name: singularity
type: application
urls:
- singularity-0.3.2.tgz
version: 0.3.2
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.038505+08:00"
description: Singularity node charts for Kubernetes
digest: 99b3d4315adb174031e7b5827b2c3fa56a3642bef121dbd67c95b46392107ca6
name: singularity
type: application
urls:
- singularity-0.3.1.tgz
version: 0.3.1
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.038026+08:00"
description: Singularity node charts for Kubernetes
digest: 1e23d7bceac04d2109b2859a3935e0d7e8612bd6b792f0d635a7eb12c8cc8f01
name: singularity
type: application
urls:
- singularity-0.3.0.tgz
version: 0.3.0
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.035036+08:00"
description: Singularity node charts for Kubernetes
digest: 645bc5205c6040da333af1f449084a664ee79b76e7771b4577e9a6cb06f2f2e1
name: singularity
type: application
urls:
- singularity-0.2.14.tgz
version: 0.2.14
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.034676+08:00"
description: Singularity node charts for Kubernetes
digest: 0af84e8a4b79f795f1e3381069b0e3cd4317373271c17eb3f240853e1a02e8a7
name: singularity
type: application
urls:
- singularity-0.2.13.tgz
version: 0.2.13
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.034173+08:00"
description: Singularity node charts for Kubernetes
digest: 4252d58f870ae0ea4322cbac0320b4b974cc031ea22c41e2ef111ceacf5d5d2c
name: singularity
type: application
urls:
- singularity-0.2.12.tgz
version: 0.2.12
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.033722+08:00"
description: Singularity node charts for Kubernetes
digest: 26210d335f523843df1065f0ed07770a977c4bf86160e027bc9a766c34b480ba
name: singularity
type: application
urls:
- singularity-0.2.11.tgz
version: 0.2.11
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.033457+08:00"
description: Singularity node charts for Kubernetes
digest: 5661841eed8c6e52e5c90be124e3f57dcb1ed4e0ac97700a0c2bc67b6e16079e
name: singularity
type: application
urls:
- singularity-0.2.10.tgz
version: 0.2.10
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.037513+08:00"
description: Singularity node charts for Kubernetes
digest: a7bf16b6b661bf33995bec06b08789df072a9ba16c9e3c9d6907c811e490e12d
name: singularity
type: application
urls:
- singularity-0.2.9.tgz
version: 0.2.9
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.037232+08:00"
description: Singularity node charts for Kubernetes
digest: 08b3bef7e5d729b5800895b8474866336ffd5953ef95ce2a6d6aaf87a4c6ba2f
name: singularity
type: application
urls:
- singularity-0.2.8.tgz
version: 0.2.8
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.036954+08:00"
description: Singularity node charts for Kubernetes
digest: c4d56293e7785d1ad7c97607d23c95797d0beba0725acbce9125e6e2db9e3687
name: singularity
type: application
urls:
- singularity-0.2.7.tgz
version: 0.2.7
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.036671+08:00"
description: Singularity node charts for Kubernetes
digest: 06c218cc5e7a421a20d49aedefd40abf7122c1506eaaa599ebc782a42003beb2
name: singularity
type: application
urls:
- singularity-0.2.6.tgz
version: 0.2.6
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.036268+08:00"
description: Singularity node charts for Kubernetes
digest: 79483ae3c2a56b5fa692101f93be73fc614850bf8b41a27c8dac7e7191d82c11
name: singularity
type: application
urls:
- singularity-0.2.5.tgz
version: 0.2.5
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.035813+08:00"
description: Singularity node charts for Kubernetes
digest: 88d42f8ab01db8efbd63be6fd5bd923d6bab3b3106a1c516ad3726662b2b1a37
name: singularity
type: application
urls:
- singularity-0.2.4.tgz
version: 0.2.4
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.035554+08:00"
description: Singularity node charts for Kubernetes
digest: 5f93bb436b12b8bc965259ad7dc4ad89b6f00a008eb986bc2cc8de851fe68523
name: singularity
type: application
urls:
- singularity-0.2.3.tgz
version: 0.2.3
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.035296+08:00"
description: Singularity node charts for Kubernetes
digest: cb3bdf3355bb6dc4eccc9bd5de1b37c8b0b7d6c33f4c0a09da912c350834380f
name: singularity
type: application
urls:
- singularity-0.2.2.tgz
version: 0.2.2
- apiVersion: v2
appVersion: 0.1.0
created: "2023-09-12T17:31:09.03318+08:00"
description: Singularity node charts for Kubernetes
digest: 2345dcffc4c8d7be6cf8981bbe6a49dbec50bb0b18e889ac625955166d8de1ab
name: singularity
type: application
urls:
- singularity-0.2.1.tgz
version: 0.2.1
- apiVersion: v2