This repository has been archived by the owner on Oct 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.yaml
13390 lines (13390 loc) · 473 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:
cf-operator:
- apiVersion: v1
appVersion: 6.1.17+0.gec409fd7
created: "2020-10-09T17:32:13.490595124Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.206
- name: quarks-secret
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.744
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 9d4f8219a204b7f0b90170c4289b0df80e6da350f8941f047bc6e873ba22ad4c
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cloudfoundry-incubator/quarks-secret
- https://github.com/cloudfoundry-incubator/quarks-utils
- https://build.opensuse.org/package/show/Cloud:Platform:quarks/quarks-operator-base
urls:
- cf-operator-6.1.17+0.gec409fd7.tgz
version: 6.1.17+0.gec409fd7
- apiVersion: v1
appVersion: 6.1.15+0.g89a56300
created: "2020-10-08T07:06:11.183797739Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.206
- name: quarks-secret
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.744
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: cb8893522bd1b81878186d866becb01bcc67f6c7dacb71e3e0a6e48e9b014410
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cloudfoundry-incubator/quarks-secret
- https://github.com/cloudfoundry-incubator/quarks-utils
- https://build.opensuse.org/package/show/Cloud:Platform:quarks/quarks-operator-base
urls:
- cf-operator-6.1.15+0.g89a56300.tgz
version: 6.1.15+0.g89a56300
- apiVersion: v1
appVersion: 6.1.14+0.g22ccdd3a
created: "2020-10-07T23:08:17.752113506Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.206
- name: quarks-secret
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.744
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: f8a9a5b342e34476d121c8d6885fbe4ca93267ea679eea8d88d2285e2414cf94
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cloudfoundry-incubator/quarks-secret
- https://github.com/cloudfoundry-incubator/quarks-utils
- https://build.opensuse.org/package/show/Cloud:Platform:quarks/quarks-operator-base
urls:
- cf-operator-6.1.14+0.g22ccdd3a.tgz
version: 6.1.14+0.g22ccdd3a
- apiVersion: v1
appVersion: 6.1.12+0.gfc4e8327
created: "2020-10-07T00:23:33.468457198Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.206
- name: quarks-secret
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.744
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: b45835a3b629cf099901ba37d1ba99744d99ac32a41b35aafc2e445fd74ad016
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cloudfoundry-incubator/quarks-secret
- https://github.com/cloudfoundry-incubator/quarks-utils
- https://build.opensuse.org/package/show/Cloud:Platform:quarks/quarks-operator-base
urls:
- cf-operator-6.1.12+0.gfc4e8327.tgz
version: 6.1.12+0.gfc4e8327
- apiVersion: v1
appVersion: 6.1.11+0.g1af4618f
created: "2020-10-06T10:46:20.317216398Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.206
- name: quarks-secret
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.744
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 0fe7b2e940a685b35dcf924817eb859cb7e5512dff6c9ed88349cf36934ae787
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cloudfoundry-incubator/quarks-secret
- https://github.com/cloudfoundry-incubator/quarks-utils
- https://build.opensuse.org/package/show/Cloud:Platform:quarks/quarks-operator-base
urls:
- cf-operator-6.1.11+0.g1af4618f.tgz
version: 6.1.11+0.g1af4618f
- apiVersion: v1
appVersion: 6.1.10+0.g7b1a5f2f
created: "2020-10-05T14:41:27.118004125Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.206
- name: quarks-secret
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.744
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: b9681197c6e53d115396c5e837a5dbb0fa2c3c26d89cb3e274e3d026a846f6f6
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cloudfoundry-incubator/quarks-secret
- https://github.com/cloudfoundry-incubator/quarks-utils
- https://build.opensuse.org/package/show/Cloud:Platform:quarks/quarks-operator-base
urls:
- cf-operator-6.1.10+0.g7b1a5f2f.tgz
version: 6.1.10+0.g7b1a5f2f
- apiVersion: v1
appVersion: 6.1.8+0.g2821133a
created: "2020-10-02T16:52:01.548454913Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.206
- name: quarks-secret
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.744
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 5805ddfe34d626f3b068abc0d1f897ec756269308e6a5d2aedf212378500c220
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cloudfoundry-incubator/quarks-secret
- https://github.com/cloudfoundry-incubator/quarks-utils
- https://build.opensuse.org/package/show/Cloud:Platform:quarks/quarks-operator-base
urls:
- cf-operator-6.1.8+0.g2821133a.tgz
version: 6.1.8+0.g2821133a
- apiVersion: v1
appVersion: 6.1.7+0.g4d918d1f
created: "2020-09-30T16:11:31.800245871Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.206
- name: quarks-secret
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.743
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 5aa346b377bb37c83a0011180f512463d977ea21446e9c3082ecb206ca39b15a
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cloudfoundry-incubator/quarks-secret
- https://github.com/cloudfoundry-incubator/quarks-utils
- https://build.opensuse.org/package/show/Cloud:Platform:quarks/quarks-operator-base
urls:
- cf-operator-6.1.7+0.g4d918d1f.tgz
version: 6.1.7+0.g4d918d1f
- apiVersion: v1
appVersion: 6.1.5+0.g73f7b1a1
created: "2020-09-25T19:19:32.815323321Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.201
- name: quarks-secret
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.740
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 3b30a329941acee26832ace2a9b82725359fec8c8d55d98fc8ce282f5bc83920
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cloudfoundry-incubator/quarks-secret
- https://github.com/cloudfoundry-incubator/quarks-utils
- https://build.opensuse.org/package/show/Cloud:Platform:quarks/quarks-operator-base
urls:
- cf-operator-6.1.5+0.g73f7b1a1.tgz
version: 6.1.5+0.g73f7b1a1
- apiVersion: v1
appVersion: 6.1.0+0.g5451299e
created: "2020-09-22T10:20:53.408747031Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.198
- name: quarks-secret
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.738
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 55d0a51b4ee6fd0e491f31fe83f2378bdf9da174b722dc1d14c0717a4cbfbff7
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cloudfoundry-incubator/quarks-secret
- https://github.com/cloudfoundry-incubator/quarks-utils
- https://build.opensuse.org/package/show/Cloud:Platform:quarks/quarks-operator-base
urls:
- cf-operator-6.1.0+0.g5451299e.tgz
version: 6.1.0+0.g5451299e
- apiVersion: v1
appVersion: 6.0.4+0.gb44bb859
created: "2020-09-02T23:12:22.100702952Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.190
- name: quarks-secret
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.712
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 4d2fd23ab28b765959a35555296c6909573ec557957403046492cc34792a29e5
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cloudfoundry-incubator/quarks-secret
- https://github.com/cloudfoundry-incubator/quarks-utils
- https://build.opensuse.org/package/show/Cloud:Platform:quarks/quarks-operator-base
urls:
- cf-operator-6.0.4+0.gb44bb859.tgz
version: 6.0.4+0.gb44bb859
- apiVersion: v1
appVersion: 6.0.2+0.g4eb7fc9f
created: "2020-08-28T22:36:09.124135808Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.190
- name: quarks-secret
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.712
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: a1af6afd6e31f494dfad06b515439db0a32db813955c51c452a147b099d3bcf3
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cloudfoundry-incubator/quarks-secret
- https://github.com/cloudfoundry-incubator/quarks-utils
- https://build.opensuse.org/package/show/Cloud:Platform:quarks/quarks-operator-base
urls:
- cf-operator-6.0.2+0.g4eb7fc9f.tgz
version: 6.0.2+0.g4eb7fc9f
- apiVersion: v1
appVersion: 6.0.0+0.g15238d6d
created: "2020-08-26T08:57:38.638538965Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.190
- name: quarks-secret
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.709
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 42a39ba6d13ba1502aa55159cce85f489e46c694d78bc5e3d090e867ab34b02b
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cloudfoundry-incubator/quarks-secret
- https://github.com/cloudfoundry-incubator/quarks-utils
- https://build.opensuse.org/package/show/Cloud:Platform:quarks/quarks-operator-base
urls:
- cf-operator-6.0.0+0.g15238d6d.tgz
version: 6.0.0+0.g15238d6d
- apiVersion: v1
appVersion: 5.2.0+0.g22cafc90
created: "2020-07-29T21:11:02.447738104Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.179
- name: quarks-secret
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.692
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: e94e07248bdbd5c7c4bc5a08dc33bc4b5fcb170b0de5e6a7d7cc93ff1a935057
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cloudfoundry-incubator/quarks-secret
- https://github.com/cloudfoundry-incubator/quarks-utils
- https://build.opensuse.org/package/show/Cloud:Platform:quarks/quarks-operator-base
urls:
- cf-operator-5.2.0+0.g22cafc90.tgz
version: 5.2.0+0.g22cafc90
- apiVersion: v1
appVersion: 5.1.0+0.ga696f719
created: "2020-07-10T13:41:40.167053322Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.179
- name: quarks-secret
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.687
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 9ec73155595820b084859ad3267cbdb5096963799cc0d34cc69a18ee208fbe17
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cloudfoundry-incubator/quarks-secret
- https://github.com/cloudfoundry-incubator/quarks-utils
- https://build.opensuse.org/package/show/Cloud:Platform:quarks/quarks-operator-base
urls:
- cf-operator-5.1.0+0.ga696f719.tgz
version: 5.1.0+0.ga696f719
- apiVersion: v1
appVersion: 5.0.0+0.gd7ac12bc
created: "2020-06-22T09:47:24.455595388Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 1.0.159
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: df225af203596ca6dc11131004704632c01579bbaf80f8439b42aa8a5e24a47a
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-5.0.0+0.gd7ac12bc.tgz
version: 5.0.0+0.gd7ac12bc
- apiVersion: v1
appVersion: 4.5.13+0.gd4738712
created: "2020-08-12T02:41:00.895367599Z"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: v0.0.86
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 749ae6f72b04fd3ac32d990254c932272a4688e93d55cc9fd07c3827d3ca8528
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-4.5.13+0.gd4738712.tgz
version: 4.5.13+0.gd4738712
- apiVersion: v1
appVersion: 4.5.6+0.gffc6f942
created: "2020-05-15T12:23:51.274490406+02:00"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: v0.0.86
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 64a2f93ec84909e5372fd89562d604b7680994535b1d392684dce74ec63bb74e
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-4.5.6+0.gffc6f942.tgz
version: 4.5.6+0.gffc6f942
- apiVersion: v1
appVersion: 4.5.0+0.g385b1698
created: "2020-05-15T12:23:51.273501625+02:00"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: v0.0.86
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: f5e10f8e3df71e78ca2d4ca121eef5a3b7a9f0c5aaa43abbaf14989f8286391a
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-4.5.0+0.g385b1698.tgz
version: 4.5.0+0.g385b1698
- apiVersion: v1
appVersion: 4.4.5+0.g501885ec
created: "2020-05-15T12:23:51.271956582+02:00"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: v0.0.86
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 3c4227b7156968d15185c0797ed50b871c98b79f54b865939329ea88cd3caceb
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-4.4.5+0.g501885ec.tgz
version: 4.4.5+0.g501885ec
- apiVersion: v1
appVersion: 4.4.4+0.gb984473a
created: "2020-05-15T12:23:51.270891924+02:00"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: v0.0.85
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 9933df62cd30aebd9e7d245956ac3bfa7be0d6cdb7a609d6c36c4f4aa50f1965
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-4.4.4+0.gb984473a.tgz
version: 4.4.4+0.gb984473a
- apiVersion: v1
appVersion: 4.4.3+0.g9bf7466d
created: "2020-05-15T12:23:51.269810942+02:00"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: v0.0.85
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 972e2793be7c242ffd57783abed29ff06a7b2952a5e26c06935e8fc59cff2705
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-4.4.3+0.g9bf7466d.tgz
version: 4.4.3+0.g9bf7466d
- apiVersion: v1
appVersion: 4.4.2+0.gd3125cfa
created: "2020-05-15T12:23:51.268561245+02:00"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: v0.0.85
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 17dd81516a0cb7328e6961a035ca01a70c95a87815b5a14a92ed42f4ec40a129
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-4.4.2+0.gd3125cfa.tgz
version: 4.4.2+0.gd3125cfa
- apiVersion: v1
appVersion: 4.4.1+0.g05bae26c
created: "2020-05-15T12:23:51.266129387+02:00"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: v0.0.85
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 57e7694532ec8d1f4a122ffefe1656269f7ec52c91fe082569f4063f7c69172b
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-4.4.1+0.g05bae26c.tgz
version: 4.4.1+0.g05bae26c
- apiVersion: v1
appVersion: 4.4.0+0.ga7028ee1
created: "2020-05-15T12:23:51.26403407+02:00"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: v0.0.85
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 79b57f9acfc71bb0a0f4d72b02d6eaadf962ca7bf1ba6dcba6c09fc17beaae9e
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-4.4.0+0.ga7028ee1.tgz
version: 4.4.0+0.ga7028ee1
- apiVersion: v1
appVersion: 4.3.1+0.g157049a1
created: "2020-05-15T12:23:51.262594992+02:00"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 0.0.0+0.g770abf2
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: b218f2692530674ddcc4ee63bc920d232113711a06b4423f0ba5e139c577e422
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-4.3.1+0.g157049a1.tgz
version: 4.3.1+0.g157049a1
- apiVersion: v1
appVersion: 4.3.0+0.gd5b4d820
created: "2020-05-15T12:23:51.259618527+02:00"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 0.0.0+0.g770abf2
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: f61a5b46b13f9a1154e96ecde1bab278a56fd5d16bb956bf5875d0029ce5077d
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-4.3.0+0.gd5b4d820.tgz
version: 4.3.0+0.gd5b4d820
- apiVersion: v1
appVersion: 4.2.0+0.g0a6fec85
created: "2020-05-15T12:23:51.258357354+02:00"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 0.0.0+0.g491e84a
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 6ec42f5c02848d3c9117a81b4cbbea79233bbf43f02351f77df714a57a6f5b13
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-4.2.0+0.g0a6fec85.tgz
version: 4.2.0+0.g0a6fec85
- apiVersion: v1
appVersion: 4.1.0+0.g8162d1c5
created: "2020-05-15T12:23:51.257128825+02:00"
dependencies:
- name: quarks-job
repository: https://cloudfoundry-incubator.github.io/quarks-helm
version: 0.0.0+0.g491e84a
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: a7cd1831e56fc285d10454a1d45e99484679cb936268690738d6f41c3230f0ba
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-4.1.0+0.g8162d1c5.tgz
version: 4.1.0+0.g8162d1c5
- apiVersion: v1
appVersion: 4.0.0+1.g97d42f19
created: "2020-05-15T12:23:51.255692639+02:00"
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: f4f902c8372038fcdf4a82727ce7ac65a007e5efc832d14377a498520a82572f
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-4.0.0+1.g97d42f19.tgz
version: 4.0.0+1.g97d42f19
- apiVersion: v1
appVersion: 3.4.0+0.g0c173836
created: "2020-05-15T12:23:51.254695612+02:00"
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 55c831344cd56a0ccd04456f2828bd124911947eda0f488f5596edad2cbb4713
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-3.4.0+0.g0c173836.tgz
version: 3.4.0+0.g0c173836
- apiVersion: v1
appVersion: 3.3.0+0.gf32b521e
created: "2020-05-15T12:23:51.253768395+02:00"
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 522a8d3fe480db90f2fb3b4a2fa62a5aed60c1d5eb526e6f627f0e70dbba2434
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-3.3.0+0.gf32b521e.tgz
version: 3.3.0+0.gf32b521e
- apiVersion: v1
appVersion: 3.2.1+0.ga32a3f79
created: "2020-05-15T12:23:51.252868341+02:00"
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: 93bc3cae7f7e2ae79f5644daf77cdeabb25a30a8a8a44d39035bc2ec5684967d
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers:
- email: [email protected]
name: project-quarks
name: cf-operator
sources:
- https://github.com/cloudfoundry-incubator/cf-operator
- https://github.com/cloudfoundry-incubator/quarks-job
- https://github.com/cfcontainerizationbot/cf-operator-base
urls:
- cf-operator-3.2.1+0.ga32a3f79.tgz
version: 3.2.1+0.ga32a3f79
- apiVersion: v1
appVersion: 3.2.0+0.g178ecd31
created: "2020-05-15T12:23:51.250925749+02:00"
description: A Helm chart for cf-operator, the k8s operator for deploying BOSH
releases
digest: bc981e8e62231147c382a497cd095b256a5970111f7f4329a795ebef5e1fbb80
home: https://github.com/cloudfoundry-incubator/cf-operator
icon: https://cloudfoundry-incubator.github.io/quarks-helm/logo.png
keywords:
- cloudfoundry
- bosh
- quarks
- deployment
maintainers: