-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.yaml
2351 lines (2351 loc) · 92.4 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:
rig:
- apiVersion: v2
appVersion: 1.1.3
created: "2023-09-13T10:47:36.964292051Z"
description: Rig is the open-source application platform for Kubernetes.
digest: 21b58666af4acbcc7f416b01666ed960a60457ad045574416c26cf791678f3d2
home: https://github.com/rigdev/rig
name: rig
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-1.1.3/rig-1.1.3.tgz
version: 1.1.3
- apiVersion: v2
appVersion: 1.1.2
created: "2023-09-06T14:50:02.54885121Z"
description: Rig is the open-source application platform for Kubernetes.
digest: 3a3ee60fa5d577e9332b83fc3b83d47548aa77d752700975e9b8d5c2fbaa8a93
home: https://github.com/rigdev/rig
name: rig
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-1.1.2/rig-1.1.2.tgz
version: 1.1.2
- apiVersion: v2
appVersion: 1.1.1
created: "2023-09-06T09:12:59.963084426Z"
description: Rig is the open-source application platform for Kubernetes.
digest: d74c7a5457de91f7dc9e209d853042519bd85a36a583d40ab0f3122cfee7cdb6
home: https://github.com/rigdev/rig
name: rig
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-1.1.1/rig-1.1.1.tgz
version: 1.1.1
- apiVersion: v2
appVersion: 1.1.0
created: "2023-09-05T12:50:42.558782716Z"
description: Rig is the open-source application platform for Kubernetes.
digest: ca68eb33ea38ce2c0b584873feb0c0666fe2680349f9cb7d340a2ea610958f96
home: https://github.com/rigdev/rig
name: rig
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-1.1.0/rig-1.1.0.tgz
version: 1.1.0
- apiVersion: v2
appVersion: 1.0.0
created: "2023-09-03T22:22:46.513647091Z"
description: Rig is the open-source application platform for Kubernetes.
digest: 5ef93b38cab5518817c6a5de54462f8bf0a92a13cb323b03410e60482087cb35
home: https://github.com/rigdev/rig
name: rig
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-1.0.1/rig-1.0.1.tgz
version: 1.0.1
- apiVersion: v2
appVersion: 1.0.0
created: "2023-09-03T20:39:29.566388661Z"
description: Rig is the open-source application platform for Kubernetes.
digest: 410bcea270f85277e2e1e38e810e07ca7520aeafb62928f2cdeef3f7e7b78533
home: https://github.com/rigdev/rig
name: rig
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-1.0.0/rig-1.0.0.tgz
version: 1.0.0
- apiVersion: v2
appVersion: 1.0.0
created: "2023-09-03T20:27:59.880764244Z"
description: Rig is the open-source application platform for Kubernetes.
digest: 9844ad7fcb640d3059c0ae4f9ff0b418c70f7160aa5edda628b1304efa01a4f1
home: https://github.com/rigdev/rig
name: rig
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-0.4.1/rig-0.4.1.tgz
version: 0.4.1
rig-operator:
- apiVersion: v2
appVersion: 1.12.7
created: "2024-11-05T12:30:57.805899519Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 572296118e5b343eb31555c0e868880c976d89e83b3066f1064c7bc18d37800c
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.44/rig-operator-1.0.44.tgz
version: 1.0.44
- apiVersion: v2
appVersion: 1.12.5
created: "2024-10-10T10:43:38.56994821Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 92f3450c41596089b35fbd50ac521140e6c632a655c88035bf56da8b81c540fe
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.43/rig-operator-1.0.43.tgz
version: 1.0.43
- apiVersion: v2
appVersion: 1.12.4
created: "2024-10-09T11:22:45.260805395Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 5195170474e52fca20038a50c6afd3d2c252669445d1fafe07a1482d9ab7e468
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.42/rig-operator-1.0.42.tgz
version: 1.0.42
- apiVersion: v2
appVersion: 1.12.3
created: "2024-10-07T11:13:09.894419708Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: c6b15bcd0011e2ad760c2b8b237b6a37d5b5b122ffe918a9284a2490908710ad
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.41/rig-operator-1.0.41.tgz
version: 1.0.41
- apiVersion: v2
appVersion: 1.12.2
created: "2024-09-27T09:05:55.742150858Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 7cf7e483a775b18df2f43517cdb00fcc55498237f3ef6a4e383c794b47c637ac
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.40/rig-operator-1.0.40.tgz
version: 1.0.40
- apiVersion: v2
appVersion: 1.12.1
created: "2024-09-16T11:07:24.305405711Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 1ea266771d10db3ee0c7596fdda6fe1b42da763f3a181aa514d5b44dd68a8830
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.39/rig-operator-1.0.39.tgz
version: 1.0.39
- apiVersion: v2
appVersion: 1.11.9
created: "2024-09-09T13:18:39.73411259Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 320c9282a65663ce2d86497a033fb52220351b0dec1dddb3b340e4401776dd03
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.38/rig-operator-1.0.38.tgz
version: 1.0.38
- apiVersion: v2
appVersion: 1.11.7
created: "2024-09-04T07:33:06.88179603Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 1a1738433690b045819cf6c7e262475a719458d0e00581ccdda2a6c80275a69a
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.37/rig-operator-1.0.37.tgz
version: 1.0.37
- apiVersion: v2
appVersion: 1.11.6
created: "2024-09-01T11:30:05.204438757Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 9f0a271c9e8059c8d759cf984f27e47a539d903af1a865f07ec7fc1d39f6f0fb
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.36/rig-operator-1.0.36.tgz
version: 1.0.36
- apiVersion: v2
appVersion: 1.11.4
created: "2024-08-28T11:50:03.389861726Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: b21a4c9d28a77b289dc8435160d4c5ee3da8e8c3194b93b4d416bcccd3904fce
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.35/rig-operator-1.0.35.tgz
version: 1.0.35
- apiVersion: v2
appVersion: 1.11.3
created: "2024-08-16T08:56:05.115305043Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 28ae083735ac73b0d4fd5aaeab362587e1bcda4d2454f72f6e3750f5205cc2b3
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.34/rig-operator-1.0.34.tgz
version: 1.0.34
- apiVersion: v2
appVersion: 1.11.2
created: "2024-08-12T15:52:07.405425141Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 0ce82acd700e82a792f7e2fab2bce9a361c8fa96a2f5dc185daeb881a7858ad8
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.33/rig-operator-1.0.33.tgz
version: 1.0.33
- apiVersion: v2
appVersion: 1.11.1
created: "2024-08-08T13:34:35.638538564Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 06186248ef831753d41b65a78865b1897a6604e37a32e03261bea61d14c36c8e
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.32/rig-operator-1.0.32.tgz
version: 1.0.32
- apiVersion: v2
appVersion: 1.11.0
created: "2024-08-02T08:43:56.846963243Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 21079c0d0c8eedf7b865da8a503be29ab474fa188a627743656c960f49d9cb29
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.31/rig-operator-1.0.31.tgz
version: 1.0.31
- apiVersion: v2
appVersion: 1.10.5
created: "2024-07-26T12:20:07.940907543Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 051c014ffa3ab490e2920cbadb04dcef51eee65828ea265cdfe9774fbc465aaf
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.30/rig-operator-1.0.30.tgz
version: 1.0.30
- apiVersion: v2
appVersion: 1.10.5
created: "2024-07-04T19:33:28.624411184Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 6e813d3d4767f1c34d861fdd0db76fa3322c23e363d0beb55130d2d8a557eb1f
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.29/rig-operator-1.0.29.tgz
version: 1.0.29
- apiVersion: v2
appVersion: 1.10.4
created: "2024-06-28T09:35:06.789850116Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: a03ce9f7b848bc7fad08d01f2f4dbe27f50d01cd3825e0942848e2cf8bb98995
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.28/rig-operator-1.0.28.tgz
version: 1.0.28
- apiVersion: v2
appVersion: 1.10.4
created: "2024-06-20T10:46:47.684977872Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: b4434749b0a68cd149931ea5a46218b8cdf1641b18a66eac79a47186fd0263e4
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.27/rig-operator-1.0.27.tgz
version: 1.0.27
- apiVersion: v2
appVersion: 1.10.2
created: "2024-06-14T11:11:39.818189494Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 61a38a9b78d1b5dbd3600ff7ed7ed3806a9cb7ec53ad60642ec5966e4eaebea4
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.26/rig-operator-1.0.26.tgz
version: 1.0.26
- apiVersion: v2
appVersion: 1.10.1
created: "2024-06-12T17:26:07.568511243Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 4640192f10922008e61f58cfe0bcc4765b03b7f21a12809350267b62ba187ac1
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.25/rig-operator-1.0.25.tgz
version: 1.0.25
- apiVersion: v2
appVersion: 1.9.6
created: "2024-05-29T10:18:58.248414919Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 1855f96b98ba981721ff54a2ed75d6f0c72d6533d7d74658638c5847bcac5205
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.24/rig-operator-1.0.24.tgz
version: 1.0.24
- apiVersion: v2
appVersion: 1.9.5
created: "2024-05-28T06:21:56.377015054Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: b46a7d2b6230875200df72a23d7983c496543d5044fee4e7fa08ea02a0196d81
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.23/rig-operator-1.0.23.tgz
version: 1.0.23
- apiVersion: v2
appVersion: 1.9.4
created: "2024-05-27T14:03:35.71852381Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: e954fcc08ec5e70d6b52baab1e75e9d31b97def054b4b1fa1f6b95ac0e4918f6
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.22/rig-operator-1.0.22.tgz
version: 1.0.22
- apiVersion: v2
appVersion: 1.9.3
created: "2024-05-23T11:28:51.812878531Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 04c26a40fcd5cd4e1a79f6ca1bd545fa2155d0d4e2462aef2d5564f0cd50d6dd
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.21/rig-operator-1.0.21.tgz
version: 1.0.21
- apiVersion: v2
appVersion: 1.9.0
created: "2024-05-13T16:01:30.937765093Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 908a7f46a1e8ceff965df2e4673dd746a9a4a078f211820029cf2d7c8bf6c137
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.20/rig-operator-1.0.20.tgz
version: 1.0.20
- apiVersion: v2
appVersion: 1.8.17
created: "2024-05-13T11:52:17.814794955Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: ca609fb0cb01c3ac6fa5b8086af97949ae0a2416c786e81690315d2656daed6e
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.19/rig-operator-1.0.19.tgz
version: 1.0.19
- apiVersion: v2
appVersion: 1.8.17
created: "2024-05-07T17:02:08.174396348Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 79bc45b3d4d75dc5b800ebcb2176d9a5752c45eb1608526bd609372233f64089
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.18/rig-operator-1.0.18.tgz
version: 1.0.18
- apiVersion: v2
appVersion: 1.8.17
created: "2024-04-23T13:50:48.11171294Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 1d78f54a7896de3782eed9948b6653a20f2ed3f682034e813f26faf1b75c2b62
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.17/rig-operator-1.0.17.tgz
version: 1.0.17
- apiVersion: v2
appVersion: 1.8.16
created: "2024-04-19T14:33:46.445152986Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 14b6f13b26dbb1e4e172211b5b45cf1888ca787c560183d108f3598bbcf0acfa
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.16/rig-operator-1.0.16.tgz
version: 1.0.16
- apiVersion: v2
appVersion: 1.8.14
created: "2024-04-15T08:38:41.877273937Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 177ec2472498a968e2f38ac8e0b8c75363aecd7692feb49baf81895e4b35593b
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.15/rig-operator-1.0.15.tgz
version: 1.0.15
- apiVersion: v2
appVersion: 1.8.11
created: "2024-04-10T10:35:30.421884943Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 5c90a5fd16e7dad9da33140ae1daba26e7032f68f7f62a7b8961e4e193b6943b
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.14/rig-operator-1.0.14.tgz
version: 1.0.14
- apiVersion: v2
appVersion: 1.8.6
created: "2024-04-05T19:01:58.070393931Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 87b9245e66a58558231e2fe1a65100458b361ffc3dd377d0756137c4760a990f
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.13/rig-operator-1.0.13.tgz
version: 1.0.13
- apiVersion: v2
appVersion: 1.8.5
created: "2024-04-05T09:45:04.058524119Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 892577a6920c67e796c0e01016d9ec29dc97aad1cee3f11a5b1aa216ab5c17e3
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.12/rig-operator-1.0.12.tgz
version: 1.0.12
- apiVersion: v2
appVersion: 1.8.4
created: "2024-04-04T18:08:55.519362794Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 7cb9e4b0cb6c941229d5f64d57d92b183d6cbddcbba72817c9faca80528d3c81
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.11/rig-operator-1.0.11.tgz
version: 1.0.11
- apiVersion: v2
appVersion: 1.8.3
created: "2024-04-04T17:52:16.821604862Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 92534c73b83f9ecb0120803b9da41528b0896b930018897c2748349f124d055d
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.10/rig-operator-1.0.10.tgz
version: 1.0.10
- apiVersion: v2
appVersion: 1.8.2
created: "2024-04-04T15:57:38.031695131Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 75b641acc3976eeee0ec03d0019c19bfd38384be27699598b42549b8173d95f3
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.9/rig-operator-1.0.9.tgz
version: 1.0.9
- apiVersion: v2
appVersion: 1.8.1
created: "2024-04-02T15:38:04.898487361Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 409d4a4f41b4a804bfccc9453ee0861fc933e977ac7202b7caec9e4c87f82871
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.8/rig-operator-1.0.8.tgz
version: 1.0.8
- apiVersion: v2
appVersion: 1.8.0
created: "2024-03-27T19:50:28.442845Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 3b582b86c5a661d0ff14a3eedb23f9bd249c1db17fa739bb9821741bb35ebc3c
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.7/rig-operator-1.0.7.tgz
version: 1.0.7
- apiVersion: v2
appVersion: 1.7.6
created: "2024-03-27T17:54:10.081242783Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 2830a88ac195ea0af8533e5b400f80440ca39b827173a32ec25fc4736a1353f6
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.6/rig-operator-1.0.6.tgz
version: 1.0.6
- apiVersion: v2
appVersion: 1.7.6
created: "2024-03-27T12:27:37.64110922Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 71114e21a4210daef4e1444e33bf975bec5225233ee2821a9f19f51ca1d8a438
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.5/rig-operator-1.0.5.tgz
version: 1.0.5
- apiVersion: v2
appVersion: 1.7.6
created: "2024-03-13T15:56:09.957278066Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: a16415880f66911bd11d2433e5dbcba66460cb46e61b5874af913a9f4fdcde9b
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.4/rig-operator-1.0.4.tgz
version: 1.0.4
- apiVersion: v2
appVersion: 1.7.3
created: "2024-03-12T11:19:39.972713192Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 62e7b0a37da056de56fd4fc42cec1c3d903c597d45922af5b096ab1ca2b36b2e
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.3/rig-operator-1.0.3.tgz
version: 1.0.3
- apiVersion: v2
appVersion: 1.7.3
created: "2024-03-11T11:27:07.98248547Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 575472b87a87dc44132face3b5e59c42755422035d7f4f9d4050f4dee854ebc2
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.2/rig-operator-1.0.2.tgz
version: 1.0.2
- apiVersion: v2
appVersion: 1.7.2
created: "2024-03-08T22:18:12.309180816Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 655006ee133c9587222f18494cc979e74d86cb91fbcc84b1df497825e8193f56
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.1/rig-operator-1.0.1.tgz
version: 1.0.1
- apiVersion: v2
appVersion: 1.7.1
created: "2024-03-06T17:53:26.658333492Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: aad4cdb63d4ad1a3139ab34a6ce26a14c58116f10e85b9cd6a3867e4b685ec1a
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-1.0.0/rig-operator-1.0.0.tgz
version: 1.0.0
- apiVersion: v2
appVersion: 1.7.0
created: "2024-03-06T15:41:43.779585171Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 00d8ce6d88c4ed9c03787cc463148da528c7bff7b9e67c6fd99beb8c3fbb800d
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.34/rig-operator-0.1.34.tgz
version: 0.1.34
- apiVersion: v2
appVersion: 1.7.0
created: "2024-03-05T17:09:06.527895839Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: b2e37d0a6de784bfe14e764200596ab5406fb15675f9d3c83f4da17b776172ff
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.33/rig-operator-0.1.33.tgz
version: 0.1.33
- apiVersion: v2
appVersion: 1.6.4
created: "2024-02-05T11:30:14.468749862Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: fc8e9eddca43bd2db132b148fbf7bf02685c944a07b7991a1d009b374d776cce
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.32/rig-operator-0.1.32.tgz
version: 0.1.32
- apiVersion: v2
appVersion: 1.6.1
created: "2024-01-26T14:43:31.548746408Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: edcfb54e6f575e00e6fb5c34967e4c1c70809960c7e91e83dc00941e868942e2
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.31/rig-operator-0.1.31.tgz
version: 0.1.31
- apiVersion: v2
appVersion: 1.6.0
created: "2024-01-18T13:31:34.733155523Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: f321359b179ece85e349daa87b5faabab6920ded0624c7ad556731400c884678
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.30/rig-operator-0.1.30.tgz
version: 0.1.30
- apiVersion: v2
appVersion: 1.6.0-rc.1
created: "2024-01-15T16:13:53.053046283Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 7efadf61e8bced0c03000cf65034fd8769f69098e967eb010561a75e0624e9f9
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.29/rig-operator-0.1.29.tgz
version: 0.1.29
- apiVersion: v2
appVersion: 1.5.5
created: "2023-12-21T08:45:30.406750991Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: ebe41932dca812c707e04899bc35e94d2bb22b135e432d571241d9e78b44a012
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.28/rig-operator-0.1.28.tgz
version: 0.1.28
- apiVersion: v2
appVersion: 1.5.4
created: "2023-12-19T12:35:48.26113885Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 79c280c6f3a065280bb9d93c7b10c926dc117053c14d6470bf19c0456453141c
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.27/rig-operator-0.1.27.tgz
version: 0.1.27
- apiVersion: v2
appVersion: 1.5.3
created: "2023-12-19T10:33:39.369766376Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 828c93a625d9b4dfff37f78627ebb0b5349b2462339cdcc7d88a6148745bfb8c
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.26/rig-operator-0.1.26.tgz
version: 0.1.26
- apiVersion: v2
appVersion: 1.5.2
created: "2023-12-15T12:17:48.147499304Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 487c1b11ee2cdcad563e681d54686a46cc7036960aab41abd4d35215a71e4516
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.25/rig-operator-0.1.25.tgz
version: 0.1.25
- apiVersion: v2
appVersion: 1.5.2
created: "2023-12-14T09:44:57.884249154Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 1f87cd7d9fd1ea40af110434c27a49f02b5620b7d37ec64c785ea9f4f487fb46
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.24/rig-operator-0.1.24.tgz
version: 0.1.24
- apiVersion: v2
appVersion: 1.5.2
created: "2023-12-14T08:59:31.639711965Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: df39a9cfba53a841b4e9cddf15dd3c55acd6d5d64b5d10e9c4035550cdb0b6f8
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.23/rig-operator-0.1.23.tgz
version: 0.1.23
- apiVersion: v2
appVersion: 1.5.2
created: "2023-12-13T11:13:31.982837669Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 64ce0de2f1f7ba15d6fe9a9365ee88288c575dc9613532f1d45278b769fbd9da
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.22/rig-operator-0.1.22.tgz
version: 0.1.22
- apiVersion: v2
appVersion: 1.5.1
created: "2023-12-11T13:44:07.729004993Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 0a75cd735749523b427b2b154dd22eba7fc5e3b2cb7e5c22c79cdf704eefbd7d
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.21/rig-operator-0.1.21.tgz
version: 0.1.21
- apiVersion: v2
appVersion: 1.5.0
created: "2023-12-06T06:04:56.733110286Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 621f9751e82b7f2f5d7a11cc5d927743d6362a95849da3fc7502e1940e8625d3
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.20/rig-operator-0.1.20.tgz
version: 0.1.20
- apiVersion: v2
appVersion: 1.5.0-rc.9
created: "2023-12-05T15:02:13.900198946Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 6a7704d67ae2a3fd0fce4d32a46254da84fc8c84a81bc100536299cbfc09fc05
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.19/rig-operator-0.1.19.tgz
version: 0.1.19
- apiVersion: v2
appVersion: 1.5.0-rc.7
created: "2023-12-05T07:57:15.106486098Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: aa2b77f6d282bc299fe64520b1547025c53e632212367f2c2d175e4dc575200c
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.18/rig-operator-0.1.18.tgz
version: 0.1.18
- apiVersion: v2
appVersion: 1.5.0-rc.5
created: "2023-11-21T12:12:58.388485253Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 97bdceb176fd45724640cd638d1cd76deb377eb0ff10e199ac5668e10898accb
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.17/rig-operator-0.1.17.tgz
version: 0.1.17
- apiVersion: v2
appVersion: 1.5.0-rc.4
created: "2023-11-21T09:49:07.350278266Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: a406dffb309943c00a9590d6c4c57a1c25d33c3e9ea60ac513400d0d92edabf0
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.16/rig-operator-0.1.16.tgz
version: 0.1.16
- apiVersion: v2
appVersion: 1.5.0-rc.3
created: "2023-11-21T08:05:12.504776661Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 140d49acd375ca04ec33d3c373de915358078de4b021073fbcbd16d2e36449d9
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.15/rig-operator-0.1.15.tgz
version: 0.1.15
- apiVersion: v2
appVersion: 1.5.0-rc.2
created: "2023-11-21T06:03:36.899027996Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 7e34b1cee9af4bd15d6751e0c22ea3d450e274cf34c7582eaa9ed331fb9d9982
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.14/rig-operator-0.1.14.tgz
version: 0.1.14
- apiVersion: v2
appVersion: v1.5.0-rc.2
created: "2023-11-21T05:52:25.728745668Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: cd1c07eb94a1300bf87d7f77cfea21111ed703a9c408183b2658fe8aaa9d8023
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.13/rig-operator-0.1.13.tgz
version: 0.1.13
- apiVersion: v2
appVersion: v1.5.0-rc.2
created: "2023-11-20T13:42:00.034210048Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 9f98b3fd024c6baee03cfc3ad9b4a7a754cdcb324a33a7f9f52b12b1dd392b29
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.12/rig-operator-0.1.12.tgz
version: 0.1.12
- apiVersion: v2
appVersion: 1.4.0
created: "2023-11-17T13:23:19.849933398Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 0a4e4a6b2262c9b148385ab99f3204829266a838cdc1ab7325d31d33e16edf93
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.11/rig-operator-0.1.11.tgz
version: 0.1.11
- apiVersion: v2
appVersion: 1.4.0
created: "2023-11-17T08:21:14.797302946Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: f8acbd32f016f9a3849444b8270f1e0817254ce42e5145ebab02eac97036dc3b
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.11-rc1/rig-operator-0.1.11-rc1.tgz
version: 0.1.11-rc1
- apiVersion: v2
appVersion: 1.3.2
created: "2023-11-13T10:21:33.403376335Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: d3cfcb38ada9300e76d860e0fab61761181ec0ad945bbb814e986fb73dec92c6
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.10/rig-operator-0.1.10.tgz
version: 0.1.10
- apiVersion: v2
appVersion: 1.3.1
created: "2023-11-08T11:38:33.152757578Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: f26014608fd1f3e23f9c78f719e5179c1c84161666d05f83b70429c10329dd58
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.9/rig-operator-0.1.9.tgz
version: 0.1.9
- apiVersion: v2
appVersion: 1.3.0
created: "2023-11-06T13:40:24.718013362Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 58d5684149c01cd63fcb2386f2971570c75c1b42b13ed41b56d13b82d0f8411f
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.8/rig-operator-0.1.8.tgz
version: 0.1.8
- apiVersion: v2
appVersion: 1.2.6
created: "2023-10-17T17:24:46.314030203Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: d8d15ace9bb4c9beb3db2b15876baa6cc27302626229ddf63d1e57d233845310
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.7/rig-operator-0.1.7.tgz
version: 0.1.7
- apiVersion: v2
appVersion: 1.2.5
created: "2023-10-16T13:51:01.008690376Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: ccc64222935f169ede90108068c2d8c742cdfb5d36cab160f6dedd4d4ae77b84
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.6/rig-operator-0.1.6.tgz
version: 0.1.6
- apiVersion: v2
appVersion: 1.2.4
created: "2023-10-11T19:36:03.693901952Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 6a795cc7108b70f09678cdbd603b601e255781795912be1d9f4273ba47d77b24
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.5/rig-operator-0.1.5.tgz
version: 0.1.5
- apiVersion: v2
appVersion: 1.2.0
created: "2023-10-11T06:58:10.929159707Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 1de88806e5c7b7b7886d39b62fad6af04cb03022c7623ec1a322188c5f2d79ea
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.4/rig-operator-0.1.4.tgz
version: 0.1.4
- apiVersion: v2
appVersion: 1.2.0-rc.2
created: "2023-10-10T19:14:17.178546445Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 480fd3d742a9d965b747841c6325cb84d02ae82a2e1ea38fe303851883ed6b60
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.3/rig-operator-0.1.3.tgz
version: 0.1.3
- apiVersion: v2
appVersion: 1.1.4
created: "2023-10-10T07:13:38.951595742Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: e676c81d682ede6bcb1a15ac17a9d0b003064367a8ea686ea7f9e45779b7c775
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.2/rig-operator-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
appVersion: 1.1.4
created: "2023-10-05T08:32:42.469586326Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 1f80567446554af716f0c9cba9d683544cf815f8c6b60fa0ff5b1665f2f359ac
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.1/rig-operator-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
appVersion: 1.1.4
created: "2023-10-03T08:06:00.407043074Z"
description: rig-operator implements the controller logic for the Rig CRDs
digest: 5b52c077f48c54bf16543b81c1b13158b87afd37d79c62f5c685a6bc48872e1b
name: rig-operator
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-operator-0.1.0/rig-operator-0.1.0.tgz
version: 0.1.0
rig-platform:
- apiVersion: v2
appVersion: 1.6.26
created: "2024-11-05T14:17:10.954111642Z"
description: Rig application platform for Kubernetes.
digest: d898f50813d0674769e6fdf9fc17e5048c91afd7b00dd997e7384565b9b9012c
home: https://github.com/rigdev/rig
name: rig-platform
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-platform-1.0.70/rig-platform-1.0.70.tgz
version: 1.0.70
- apiVersion: v2
appVersion: 1.6.25
created: "2024-11-05T12:30:57.962448894Z"
description: Rig application platform for Kubernetes.
digest: 3e93a3fc9b5229805b2042134a20986ec439bb8b2f3e5c31e1945a6e23c587b0
home: https://github.com/rigdev/rig
name: rig-platform
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-platform-1.0.69/rig-platform-1.0.69.tgz
version: 1.0.69
- apiVersion: v2
appVersion: 1.6.24
created: "2024-11-01T09:59:12.716051457Z"
description: Rig application platform for Kubernetes.
digest: b714fe43bd590c68fab72222543f6cd7276131f1a6658ff20e8332406b5550d4
home: https://github.com/rigdev/rig
name: rig-platform
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-platform-1.0.68/rig-platform-1.0.68.tgz
version: 1.0.68
- apiVersion: v2
appVersion: 1.6.22
created: "2024-10-28T13:14:49.756099959Z"
description: Rig application platform for Kubernetes.
digest: ab17c896b0d08b827519ce559c08a10a45949363f1c5bdd0dc6f064b88a6294e
home: https://github.com/rigdev/rig
name: rig-platform
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-platform-1.0.67/rig-platform-1.0.67.tgz
version: 1.0.67
- apiVersion: v2
appVersion: 1.6.21
created: "2024-10-28T09:03:21.322408089Z"
description: Rig application platform for Kubernetes.
digest: c1dddc55970f726e629016264cffb8bd3c955648e31f7541eb7dc7a7ca7df13d
home: https://github.com/rigdev/rig
name: rig-platform
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-platform-1.0.66/rig-platform-1.0.66.tgz
version: 1.0.66
- apiVersion: v2
appVersion: 1.6.20
created: "2024-10-21T13:55:33.277204294Z"
description: Rig application platform for Kubernetes.
digest: b9c486229d187cc2f242c00dbfd7c4d84ab9d20762770be11ffdf4dbc0f90cd3
home: https://github.com/rigdev/rig
name: rig-platform
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-platform-1.0.65/rig-platform-1.0.65.tgz
version: 1.0.65
- apiVersion: v2
appVersion: 1.6.19
created: "2024-10-18T15:09:53.995415031Z"
description: Rig application platform for Kubernetes.
digest: 6ac3f79f3f6a10170be05cd3a5e4f4a0c18b821246152ae4517e1a830eae0335
home: https://github.com/rigdev/rig
name: rig-platform
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-platform-1.0.64/rig-platform-1.0.64.tgz
version: 1.0.64
- apiVersion: v2
appVersion: 1.6.16
created: "2024-10-16T15:25:07.473238816Z"
description: Rig application platform for Kubernetes.
digest: 51cba6a82929f18dffa70f841d87530ea02cc8b759587ed341086612f9209c4b
home: https://github.com/rigdev/rig
name: rig-platform
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-platform-1.0.63/rig-platform-1.0.63.tgz
version: 1.0.63
- apiVersion: v2
appVersion: 1.6.15
created: "2024-10-16T11:49:08.618110471Z"
description: Rig application platform for Kubernetes.
digest: 273077d4424ced59924107faad16dfd062c144037aacd980fa54e75a94f33e36
home: https://github.com/rigdev/rig
name: rig-platform
type: application
urls:
- https://github.com/rigdev/charts/releases/download/rig-platform-1.0.62/rig-platform-1.0.62.tgz
version: 1.0.62
- apiVersion: v2
appVersion: 1.6.14
created: "2024-10-16T10:37:17.690740396Z"
description: Rig application platform for Kubernetes.
digest: f235477e2016e44018ae352fb8cc4fe32ffad58e88a47c70b90bc030481a24f0
home: https://github.com/rigdev/rig
name: rig-platform
type: application
urls: