-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.yaml
1087 lines (1087 loc) · 46.1 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:
connection-hub-operator:
- apiVersion: v2
appVersion: v0.1.8-alpha.5
created: "2024-04-04T07:19:32.725866965Z"
description: A Helm chart for Kubernetes
digest: e09eb81b8a693d9f546a56e65379624e5fbbcd8b2a227ec9e499411d403070b6
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.8-alpha.5/connection-hub-operator-0.1.8-alpha.5.tgz
version: 0.1.8-alpha.5
- apiVersion: v2
appVersion: v0.1.8-alpha.4
created: "2024-03-14T07:48:26.51034186Z"
description: A Helm chart for Kubernetes
digest: a5a36286d5cac8d67ede6db80f09ae8152efb52dc1aad242a9a322d0c5f1ac1a
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.8-alpha.4/connection-hub-operator-0.1.8-alpha.4.tgz
version: 0.1.8-alpha.4
- apiVersion: v2
appVersion: v0.1.8-alpha.3
created: "2024-03-14T07:36:53.138906925Z"
description: A Helm chart for Kubernetes
digest: e3b2aa79593d23609773c38473f71b746bf2e771ae1582ff85424a8d245c05c0
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.8-alpha.3/connection-hub-operator-0.1.8-alpha.3.tgz
version: 0.1.8-alpha.3
- apiVersion: v2
appVersion: v0.1.8-alpha.2
created: "2024-03-14T07:10:05.979006759Z"
description: A Helm chart for Kubernetes
digest: f25cd88afeb982e446a662b3dc361313b4b62aee56fa65fef0e1fad21bf09483
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.8-alpha.2/connection-hub-operator-0.1.8-alpha.2.tgz
version: 0.1.8-alpha.2
- apiVersion: v2
appVersion: v0.1.8-alpha.1
created: "2024-03-14T06:37:01.076561448Z"
description: A Helm chart for Kubernetes
digest: 5bd1ebc6e445b5f210f98cb3b02eec85929086b5ffe57da14532dc450b1d4b7d
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.8-alpha.1/connection-hub-operator-0.1.8-alpha.1.tgz
version: 0.1.8-alpha.1
- apiVersion: v2
appVersion: v0.1.7-alpha.12-libreswan-v2
created: "2024-03-13T15:10:52.63010716Z"
description: A Helm chart for Kubernetes
digest: ac51429a9201d75f8daad4b4d9da7ab75095b78af6f9f3aac9d2e81f7966ea3f
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.7-alpha.12-libreswan-v2/connection-hub-operator-0.1.7-alpha.12-libreswan-v2.tgz
version: 0.1.7-alpha.12-libreswan-v2
- apiVersion: v2
appVersion: v0.1.7-alpha.12-libreswan
created: "2024-03-12T06:56:56.671235354Z"
description: A Helm chart for Kubernetes
digest: 01709f5dd6c0a5844d3c96082ad9e2901112d914f5da1d2984f7d0ecc2db383f
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.7-alpha.12-libreswan/connection-hub-operator-0.1.7-alpha.12-libreswan.tgz
version: 0.1.7-alpha.12-libreswan
- apiVersion: v2
appVersion: v0.1.7-alpha.12
created: "2024-02-19T09:39:02.590682511Z"
description: A Helm chart for Kubernetes
digest: da559104b2a57d41aeb113038a0bbe520ea9296f43fb72ee0df9ca23f03ab5e7
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.7-alpha.12/connection-hub-operator-0.1.7-alpha.12.tgz
version: 0.1.7-alpha.12
- apiVersion: v2
appVersion: v0.1.7-alpha.11
created: "2024-01-22T12:55:00.063550262Z"
description: A Helm chart for Kubernetes
digest: a8e673cfbe3ab63d5f26d4f953f096a64c28c3be2f75e4bd19994bc04e6e7e31
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.7-alpha.11/connection-hub-operator-0.1.7-alpha.11.tgz
version: 0.1.7-alpha.11
- apiVersion: v2
appVersion: v0.1.7-alpha.10
created: "2023-07-06T11:48:30.108933358Z"
description: A Helm chart for Kubernetes
digest: 5ff4540867c3bd77203a239c3e6d104693f5d635e2e7ac2b788e3f61295a97e3
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.7-alpha.10/connection-hub-operator-0.1.7-alpha.10.tgz
version: 0.1.7-alpha.10
- apiVersion: v2
appVersion: v0.1.7-alpha.9
created: "2023-07-06T10:52:30.569368441Z"
description: A Helm chart for Kubernetes
digest: 2dd7e95d29d713d3e72656540582881ec6cd7ee31d695e506d304a8b0d59c2bd
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.7-alpha.9/connection-hub-operator-0.1.7-alpha.9.tgz
version: 0.1.7-alpha.9
- apiVersion: v2
appVersion: v0.1.7-alpha.8
created: "2023-07-06T09:58:08.501721078Z"
description: A Helm chart for Kubernetes
digest: 955dc3f9b701aa762519bdd040739523f0f5cfc35ad7dee688307ffc68ab516d
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.7-alpha.8/connection-hub-operator-0.1.7-alpha.8.tgz
version: 0.1.7-alpha.8
- apiVersion: v2
appVersion: v0.1.7-alpha.7
created: "2023-07-04T07:22:44.761799877Z"
description: A Helm chart for Kubernetes
digest: cb26dabbc1cc11c03c53e9785bc55f73fdf62f1f54f643e857d35d6c1cd03f49
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.7-alpha.7/connection-hub-operator-0.1.7-alpha.7.tgz
version: 0.1.7-alpha.7
- apiVersion: v2
appVersion: v0.1.7-alpha.6
created: "2023-06-09T14:23:28.676712451Z"
description: A Helm chart for Kubernetes
digest: c0acea7433c986844e8cd6904be85dc94a1bfa7c0fe2b8831ef9ac81c4366055
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.7-alpha.6/connection-hub-operator-0.1.7-alpha.6.tgz
version: 0.1.7-alpha.6
- apiVersion: v2
appVersion: v0.1.7-alpha.5
created: "2023-06-09T12:29:42.133861791Z"
description: A Helm chart for Kubernetes
digest: f188c9b9f9b50dba612e1b48815276389f7d3d9cd6461d81e22aee9548bca324
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.7-alpha.5/connection-hub-operator-0.1.7-alpha.5.tgz
version: 0.1.7-alpha.5
- apiVersion: v2
appVersion: v0.1.7-alpha.4
created: "2023-06-06T11:46:52.237923064Z"
description: A Helm chart for Kubernetes
digest: 44e2aa0866fe7cbf5f2b23de06d32c90485135de5d6cd4d8bc8ec4ef793d62aa
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.7-alpha.4/connection-hub-operator-0.1.7-alpha.4.tgz
version: 0.1.7-alpha.4
- apiVersion: v2
appVersion: v0.1.7-alpha.3
created: "2023-06-06T07:31:05.290898301Z"
description: A Helm chart for Kubernetes
digest: 8caf5e97067672c499488e5f60c567d911a3d230c640d3867db103f9de720d1a
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.7-alpha.3/connection-hub-operator-0.1.7-alpha.3.tgz
version: 0.1.7-alpha.3
- apiVersion: v2
appVersion: v0.1.7-alpha.2
created: "2023-04-19T07:54:11.303704619Z"
description: A Helm chart for Kubernetes
digest: bbe5d6ec8b17c5ecf40710dd0ccaeb733560839b78325cd36271d558b7642225
name: connection-hub-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/connection-hub-operator-0.1.7-alpha.2/connection-hub-operator-0.1.7-alpha.2.tgz
version: 0.1.7-alpha.2
devspace-operator:
- apiVersion: v2
appVersion: v0.1.0-alpha.4
created: "2023-06-13T14:50:38.573177857Z"
description: A Helm chart for Kubernetes
digest: d8b6d106476140be7e770a4966e847372ea473046e0bb159fbd49fdd5bf6b332
name: devspace-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/devspace-operator-0.1.0-alpha.4/devspace-operator-0.1.0-alpha.4.tgz
version: 0.1.0-alpha.4
- apiVersion: v2
appVersion: v0.1.0-alpha.3
created: "2023-06-05T13:00:53.499502906Z"
description: A Helm chart for Kubernetes
digest: 31cf150804fcd88c599606ff34c4d23b8b1f1c18646501ef6b3629a27a506b4c
name: devspace-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/devspace-operator-0.1.0-alpha.3/devspace-operator-0.1.0-alpha.3.tgz
version: 0.1.0-alpha.3
- apiVersion: v2
appVersion: v0.1.0-alpha.1
created: "2023-06-02T09:57:33.628470076Z"
description: A Helm chart for Kubernetes
digest: 3eb12c122d91c0c294283c153f795f57fcf25de72a20d6206cb506c2c3db8ddb
name: devspace-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/devspace-operator-0.1.0-alpha.1/devspace-operator-0.1.0-alpha.1.tgz
version: 0.1.0-alpha.1
fleet-operator:
- apiVersion: v2
appVersion: v0.1.6-alpha.18
created: "2024-03-07T13:21:42.434745598Z"
description: A Helm chart for Kubernetes
digest: b05ca04f9131d3a6fbb62a438d1bac05396d2aed5c1f8973836273b820fbd849
name: fleet-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/fleet-operator-0.1.6-alpha.18/fleet-operator-0.1.6-alpha.18.tgz
version: 0.1.6-alpha.18
- apiVersion: v2
appVersion: v0.1.6-alpha.17
created: "2024-03-07T13:15:12.750890552Z"
description: A Helm chart for Kubernetes
digest: c0cc198623dcf9df9df03c4df04bebb3d901da02e89874866b1c6ec09b41173e
name: fleet-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/fleet-operator-0.1.6-alpha.17/fleet-operator-0.1.6-alpha.17.tgz
version: 0.1.6-alpha.17
- apiVersion: v2
appVersion: v0.1.6-alpha.16
created: "2024-03-07T12:48:54.586559263Z"
description: A Helm chart for Kubernetes
digest: db15b3141c9ffb5b445f40c573e632da65a6426ad3fb1af7ffbd66c1d38c98b2
name: fleet-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/fleet-operator-0.1.6-alpha.16/fleet-operator-0.1.6-alpha.16.tgz
version: 0.1.6-alpha.16
- apiVersion: v2
appVersion: v0.1.6-alpha.14
created: "2023-08-11T07:58:41.397915139Z"
description: A Helm chart for Kubernetes
digest: 114b82a0cb2444a284f01546c8ee9b458b954575c0c1e68e5f52c19c7f36597f
name: fleet-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/fleet-operator-0.1.6-alpha.14/fleet-operator-0.1.6-alpha.14.tgz
version: 0.1.6-alpha.14
- apiVersion: v2
appVersion: v0.1.6-alpha.13
created: "2023-08-02T07:51:50.619472745Z"
description: A Helm chart for Kubernetes
digest: 9d5f8e506e4c04f4ec615afea2ed6ffef380a903c764aa088ea0b3a6cd1a20c1
name: fleet-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/fleet-operator-0.1.6-alpha.13/fleet-operator-0.1.6-alpha.13.tgz
version: 0.1.6-alpha.13
- apiVersion: v2
appVersion: v0.1.6-alpha.12
created: "2023-07-04T14:32:40.249836994Z"
description: A Helm chart for Kubernetes
digest: bdeefabbe5f30db89a92146e6e987c3f05c627e3fe46b6eddab4efe4a0fc23fc
name: fleet-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/fleet-operator-0.1.6-alpha.12/fleet-operator-0.1.6-alpha.12.tgz
version: 0.1.6-alpha.12
- apiVersion: v2
appVersion: v0.1.6-alpha.11
created: "2023-06-12T08:10:02.304833467Z"
description: A Helm chart for Kubernetes
digest: c6f49fc8e479b3248aab70f095acd9b264ae5496263754a071b8116021b89db3
name: fleet-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/fleet-operator-0.1.6-alpha.11/fleet-operator-0.1.6-alpha.11.tgz
version: 0.1.6-alpha.11
- apiVersion: v2
appVersion: v0.1.6-alpha.10
created: "2023-05-25T07:13:13.051330393Z"
description: A Helm chart for Kubernetes
digest: 0f835f20d30376922ea1e01d77013462cc0cb50a601b6b95f9f9adc891be0972
name: fleet-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/fleet-operator-0.1.6-alpha.10/fleet-operator-0.1.6-alpha.10.tgz
version: 0.1.6-alpha.10
- apiVersion: v2
appVersion: v0.1.6-alpha.9
created: "2023-05-08T14:25:21.266246571Z"
description: A Helm chart for Kubernetes
digest: d9e547e9802dabbf4f7954fad88ae5ddb3608d7ea833c8c2aa4137374c5cd616
name: fleet-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/fleet-operator-0.1.6-alpha.9/fleet-operator-0.1.6-alpha.9.tgz
version: 0.1.6-alpha.9
- apiVersion: v2
appVersion: v0.1.6-alpha.8
created: "2023-05-03T07:50:09.527164359Z"
description: A Helm chart for Kubernetes
digest: fcd17635d711b5d651c7d3bde9bc204a0daf778b482872a4827db12c8d752628
name: fleet-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/fleet-operator-0.1.6-alpha.8/fleet-operator-0.1.6-alpha.8.tgz
version: 0.1.6-alpha.8
- apiVersion: v2
appVersion: v0.1.6-alpha.7
created: "2023-04-28T08:50:46.474678918Z"
description: A Helm chart for Kubernetes
digest: a7c8c0dbc626c17e8e6172117a2db292da262e5efa31bb61752ddb27d8aaa00f
name: fleet-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/fleet-operator-0.1.6-alpha.7/fleet-operator-0.1.6-alpha.7.tgz
version: 0.1.6-alpha.7
- apiVersion: v2
appVersion: v0.1.6-alpha.6
created: "2023-04-25T07:12:36.870504628Z"
description: A Helm chart for Kubernetes
digest: 791ce87710aa4d1e0d59ddbadf2437b22cb8749171ec8808140e0c209a359f4b
name: fleet-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/fleet-operator-0.1.6-alpha.6/fleet-operator-0.1.6-alpha.6.tgz
version: 0.1.6-alpha.6
- apiVersion: v2
appVersion: v0.1.6-alpha.5
created: "2023-04-19T07:18:26.457336209Z"
description: A Helm chart for Kubernetes
digest: 89004612bae3c045a7948fc02cd36ebdd0123753aff2cc28911882b632c43e26
name: fleet-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/fleet-operator-0.1.6-alpha.5/fleet-operator-0.1.6-alpha.5.tgz
version: 0.1.6-alpha.5
robot-operator:
- apiVersion: v2
appVersion: v0.2.7-alpha.4-udp-test-2
created: "2024-03-04T14:55:19.660297856Z"
description: A Helm chart for Kubernetes
digest: 3202067b6a07addad39ecae834e66caae9d5a9cd0dcbe78d929a89a0892974a6
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.7-alpha.4-udp-test-2/robot-operator-0.2.7-alpha.4-udp-test-2.tgz
version: 0.2.7-alpha.4-udp-test-2
- apiVersion: v2
appVersion: v0.2.7-alpha.7.4
created: "2024-12-05T14:29:05.716135145Z"
description: A Helm chart for Kubernetes
digest: b9589992fe97032a89da8673d17a78d962df89ff1e99106542ab17b22686f2fc
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.7-alpha.7.4/robot-operator-0.2.7-alpha.7.4.tgz
version: 0.2.7-alpha.7.4
- apiVersion: v2
appVersion: v0.2.7-alpha.7.3
created: "2024-11-11T06:56:22.772815358Z"
description: A Helm chart for Kubernetes
digest: 13b60bc3abf92040da9583fade3bc16cf40aaf7633135797d931896e05d405a1
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.7-alpha.7.3/robot-operator-0.2.7-alpha.7.3.tgz
version: 0.2.7-alpha.7.3
- apiVersion: v2
appVersion: v0.2.7-alpha.7.2
created: "2024-10-03T16:52:01.018217534Z"
description: A Helm chart for Kubernetes
digest: 885fc08bb5660924f71fe447da10768539e419eb9b7657b29fa18796d64702ba
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.7-alpha.7.2/robot-operator-0.2.7-alpha.7.2.tgz
version: 0.2.7-alpha.7.2
- apiVersion: v2
appVersion: v0.2.7-alpha.7.1
created: "2024-10-03T16:27:59.004150783Z"
description: A Helm chart for Kubernetes
digest: bad4a6f40911a90c809deeeaa02ef9d206c0e8a3e0137f88143465dd3881e935
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.7-alpha.7.1/robot-operator-0.2.7-alpha.7.1.tgz
version: 0.2.7-alpha.7.1
- apiVersion: v2
appVersion: v0.2.7-alpha.7
created: "2024-09-11T13:06:18.496420418Z"
description: A Helm chart for Kubernetes
digest: baacc39c382ddcd40c1143799ca86c3eb2c4c33a0e9b068d9110d886c08896ab
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.7-alpha.7/robot-operator-0.2.7-alpha.7.tgz
version: 0.2.7-alpha.7
- apiVersion: v2
appVersion: v0.2.7-alpha.6.4
created: "2024-03-21T06:42:29.186444591Z"
description: A Helm chart for Kubernetes
digest: 9aae53e391853b88f3a605f0068035d339283edd0e8887ec61cf1e43960d6f62
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.7-alpha.6.4/robot-operator-0.2.7-alpha.6.4.tgz
version: 0.2.7-alpha.6.4
- apiVersion: v2
appVersion: v0.2.7-alpha.6.3
created: "2024-03-18T08:54:57.234975341Z"
description: A Helm chart for Kubernetes
digest: 765542e245c774870c2a5c2a0bf95d1d7a71fd1475a7583c639b0fe3bf29c176
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.7-alpha.6.3/robot-operator-0.2.7-alpha.6.3.tgz
version: 0.2.7-alpha.6.3
- apiVersion: v2
appVersion: v0.2.7-alpha.6.2
created: "2024-03-18T07:36:12.547747345Z"
description: A Helm chart for Kubernetes
digest: ec9420b48af097ddb99e436d9719df5542ab9d6b2e51b783fc2b30c72063ff1e
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.7-alpha.6.2/robot-operator-0.2.7-alpha.6.2.tgz
version: 0.2.7-alpha.6.2
- apiVersion: v2
appVersion: v0.2.7-alpha.6.1
created: "2024-03-07T11:52:04.007571037Z"
description: A Helm chart for Kubernetes
digest: 8659d69be5c1f522b27a54adef5ac71d20365466577b26e4783ea8ce52a8e7e3
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.7-alpha.6.1/robot-operator-0.2.7-alpha.6.1.tgz
version: 0.2.7-alpha.6.1
- apiVersion: v2
appVersion: v0.2.7-alpha.6
created: "2024-03-06T06:53:55.429793603Z"
description: A Helm chart for Kubernetes
digest: 3fd6068c10b87547023d321f6a5cd9af6d6a1614a9e61455bc7027d59a5c507f
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.7-alpha.6/robot-operator-0.2.7-alpha.6.tgz
version: 0.2.7-alpha.6
- apiVersion: v2
appVersion: v0.2.7-alpha.5
created: "2024-03-04T05:01:50.228936866Z"
description: A Helm chart for Kubernetes
digest: be8e9de8960d4c6259a943511d721707d5515e5dc51750f080784a420f571fca
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.7-alpha.5/robot-operator-0.2.7-alpha.5.tgz
version: 0.2.7-alpha.5
- apiVersion: v2
appVersion: v0.2.7-alpha.4
created: "2024-02-15T13:30:01.854928082Z"
description: A Helm chart for Kubernetes
digest: ebb2578317f749d00cd0ab16cfa3063c6c19956405591af166015f5d28413a51
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.7-alpha.4/robot-operator-0.2.7-alpha.4.tgz
version: 0.2.7-alpha.4
- apiVersion: v2
appVersion: vv0.2.7-alpha.2
created: "2024-02-15T09:22:27.282567836Z"
description: A Helm chart for Kubernetes
digest: d10119138e5261c6a0ceb9693bbcdfc3b81afc00ac249cbd747fd89d3308158b
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-v0.2.7-alpha.2/robot-operator-v0.2.7-alpha.2.tgz
version: v0.2.7-alpha.2
- apiVersion: v2
appVersion: v0.2.7-alpha.1
created: "2024-02-05T09:03:45.998589711Z"
description: A Helm chart for Kubernetes
digest: da64493812903453396a0d68459b92d68294b7472faa1f3566ba31c1f0e60f27
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.7-alpha.1/robot-operator-0.2.7-alpha.1.tgz
version: 0.2.7-alpha.1
- apiVersion: v2
appVersion: v0.2.6-alpha.19
created: "2024-01-29T14:34:46.842298394Z"
description: A Helm chart for Kubernetes
digest: 8eb441e5037de8e6046611acdf341c222d77cb08d1dd48247c5a67153f41b167
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.19/robot-operator-0.2.6-alpha.19.tgz
version: 0.2.6-alpha.19
- apiVersion: v2
appVersion: v0.2.6-alpha.18
created: "2024-01-26T10:32:47.702255741Z"
description: A Helm chart for Kubernetes
digest: e6346a932fa24dbc47f7a517f81e2823643c4bba4d834add54e7d9e935692c6f
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.18/robot-operator-0.2.6-alpha.18.tgz
version: 0.2.6-alpha.18
- apiVersion: v2
appVersion: v0.2.6-alpha.17
created: "2024-01-24T12:28:35.149950346Z"
description: A Helm chart for Kubernetes
digest: 17b47ef7e16d7350f41106e039e62695eb9e415d0cfe8a956ce111e3f049f5cd
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.17/robot-operator-0.2.6-alpha.17.tgz
version: 0.2.6-alpha.17
- apiVersion: v2
appVersion: v0.2.6-alpha.16
created: "2024-01-19T11:47:16.44279178Z"
description: A Helm chart for Kubernetes
digest: b162e7872e1ba298c163a7e171fdb92da9813df5b5699e306ca83163242b0a7a
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.16/robot-operator-0.2.6-alpha.16.tgz
version: 0.2.6-alpha.16
- apiVersion: v2
appVersion: v0.2.6-alpha.15
created: "2024-01-18T14:35:48.020631474Z"
description: A Helm chart for Kubernetes
digest: 8704ea681369b5d42e50e6c531ba8639981f2c9b9a921a4f46337ec3ccdb6639
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.15/robot-operator-0.2.6-alpha.15.tgz
version: 0.2.6-alpha.15
- apiVersion: v2
appVersion: v0.2.6-alpha.14.9
created: "2024-01-02T14:13:28.837585284Z"
description: A Helm chart for Kubernetes
digest: 067905d5c51a61ed2b2c75aac2a3ae53011a454afd4d85d6f66d4c49be32b14d
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.14.9/robot-operator-0.2.6-alpha.14.9.tgz
version: 0.2.6-alpha.14.9
- apiVersion: v2
appVersion: v0.2.6-alpha.14.8
created: "2024-01-02T13:59:23.67190737Z"
description: A Helm chart for Kubernetes
digest: ad5d00145bf7ab29cba65b96e6495018094f3a36f410dec4e1454b6ecffd55d7
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.14.8/robot-operator-0.2.6-alpha.14.8.tgz
version: 0.2.6-alpha.14.8
- apiVersion: v2
appVersion: v0.2.6-alpha.14.7
created: "2023-12-25T12:45:16.029082217Z"
description: A Helm chart for Kubernetes
digest: 5c90043b8c336b11ea79f7627b22f7bfd117654ec3e86aa00320645c8f08fac3
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.14.7/robot-operator-0.2.6-alpha.14.7.tgz
version: 0.2.6-alpha.14.7
- apiVersion: v2
appVersion: v0.2.6-alpha.14.6
created: "2023-12-13T15:09:24.965783006Z"
description: A Helm chart for Kubernetes
digest: 1270e99c803e09bda14f7470eac809bf8dd9e065d1089144caadf72e688af449
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.14.6/robot-operator-0.2.6-alpha.14.6.tgz
version: 0.2.6-alpha.14.6
- apiVersion: v2
appVersion: v0.2.6-alpha.14.5
created: "2023-12-13T11:37:03.801090194Z"
description: A Helm chart for Kubernetes
digest: 91892db53625b4f112cf223e3b40453e0b156584b782d56bad636a9997b41dc8
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.14.5/robot-operator-0.2.6-alpha.14.5.tgz
version: 0.2.6-alpha.14.5
- apiVersion: v2
appVersion: v0.2.6-alpha.14.4
created: "2023-12-13T10:26:49.203758162Z"
description: A Helm chart for Kubernetes
digest: 839c1bb144e6820ad655f0e732f000975f1200e3e00d8795b9b26a26d37bfd77
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.14.4/robot-operator-0.2.6-alpha.14.4.tgz
version: 0.2.6-alpha.14.4
- apiVersion: v2
appVersion: v0.2.6-alpha.14.3
created: "2023-12-13T10:02:20.368908697Z"
description: A Helm chart for Kubernetes
digest: 194aadef14c0106ea4d765210e055d56e8b2523d7544e52da41df41072e15253
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.14.3/robot-operator-0.2.6-alpha.14.3.tgz
version: 0.2.6-alpha.14.3
- apiVersion: v2
appVersion: v0.2.6-alpha.14.2
created: "2023-12-06T13:47:33.029593213Z"
description: A Helm chart for Kubernetes
digest: b829da1df83478e3bd8d72a64ad8c7d6cbcfa91fbde1c650b96b223c7166449e
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.14.2/robot-operator-0.2.6-alpha.14.2.tgz
version: 0.2.6-alpha.14.2
- apiVersion: v2
appVersion: v0.2.6-alpha.14.1
created: "2023-12-05T11:12:28.420537694Z"
description: A Helm chart for Kubernetes
digest: 6c6d78c20426e3fe75e901cd1a74d306383f62c4c01f8eda102903a8298851a5
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.14.1/robot-operator-0.2.6-alpha.14.1.tgz
version: 0.2.6-alpha.14.1
- apiVersion: v2
appVersion: v0.2.6-alpha.14
created: "2023-12-04T13:37:43.50937403Z"
description: A Helm chart for Kubernetes
digest: 6a5a589f08aee426049af599288ae6fd171e9e85d9070d4d91a642be05720850
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.14/robot-operator-0.2.6-alpha.14.tgz
version: 0.2.6-alpha.14
- apiVersion: v2
appVersion: v0.2.6-alpha.13.2-hostnetwork-enabled
created: "2023-11-17T07:25:49.038441325Z"
description: A Helm chart for Kubernetes
digest: 5130de709879170eb91d9bc27e77c257ab2ab15c64b6b34b36c18974c9a0d5b3
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.13.2-hostnetwork-enabled/robot-operator-0.2.6-alpha.13.2-hostnetwork-enabled.tgz
version: 0.2.6-alpha.13.2-hostnetwork-enabled
- apiVersion: v2
appVersion: v0.2.6-alpha.13.3
created: "2023-11-20T09:33:27.46305593Z"
description: A Helm chart for Kubernetes
digest: a85d9621bb38a654212439da7e27b8667c82881ebaa6bbcec8e6539f31fe6b2a
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.13.3/robot-operator-0.2.6-alpha.13.3.tgz
version: 0.2.6-alpha.13.3
- apiVersion: v2
appVersion: v0.2.6-alpha.13.1
created: "2023-11-09T10:37:39.881118426Z"
description: A Helm chart for Kubernetes
digest: 0e05723f7fd51876c20fc2bc3fda684025a6b19f9cc0fa118ac3cd8c90e7f698
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.13.1/robot-operator-0.2.6-alpha.13.1.tgz
version: 0.2.6-alpha.13.1
- apiVersion: v2
appVersion: v0.2.6-alpha.13
created: "2023-11-08T10:48:29.239328029Z"
description: A Helm chart for Kubernetes
digest: a79ffed2855d88fc52a47bc0147e1530a7d46afa4d025df5ed622f41af3e1b17
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.13/robot-operator-0.2.6-alpha.13.tgz
version: 0.2.6-alpha.13
- apiVersion: v2
appVersion: v0.2.6-alpha.12.2
created: "2023-11-07T14:05:58.648882273Z"
description: A Helm chart for Kubernetes
digest: 965ed1359637d65b11e4c9bb5e852f8fbaba7e4f22cc541ffe5d4f93f1e7afb8
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.12.2/robot-operator-0.2.6-alpha.12.2.tgz
version: 0.2.6-alpha.12.2
- apiVersion: v2
appVersion: v0.2.6-alpha.12.1
created: "2023-11-02T09:00:32.788781423Z"
description: A Helm chart for Kubernetes
digest: b14958425e513871e6913fc1bb9a3756d7350ff3a58eb5dfcdd7966016177bae
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.12.1/robot-operator-0.2.6-alpha.12.1.tgz
version: 0.2.6-alpha.12.1
- apiVersion: v2
appVersion: v0.2.6-alpha.12
created: "2023-10-30T10:55:38.006763152Z"
description: A Helm chart for Kubernetes
digest: 45ceb268c1321a33faac4409a58e7c3ad0299a95cc7003749a75441566bd0c4b
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.12/robot-operator-0.2.6-alpha.12.tgz
version: 0.2.6-alpha.12
- apiVersion: v2
appVersion: v0.2.6-alpha.11
created: "2023-10-30T07:24:17.383160429Z"
description: A Helm chart for Kubernetes
digest: 5c98ff6f9744e3fc9d1e08461b42a894da923594da3017b126921398a703d1e1
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.11/robot-operator-0.2.6-alpha.11.tgz
version: 0.2.6-alpha.11
- apiVersion: v2
appVersion: v0.2.6-alpha.10
created: "2023-10-17T12:09:07.867254934Z"
description: A Helm chart for Kubernetes
digest: 04afa2b446df7d446cb61c1f75887b464a96acc1628b1bfcf8d0fd471a56cee1
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.10/robot-operator-0.2.6-alpha.10.tgz
version: 0.2.6-alpha.10
- apiVersion: v2
appVersion: v0.2.6-alpha.9
created: "2023-10-16T10:19:52.411280488Z"
description: A Helm chart for Kubernetes
digest: bdbb0cbfa69a45015bfd07b4c5590ae9de2b4aa85a3f52b7f6c6e0e174590cf7
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.9/robot-operator-0.2.6-alpha.9.tgz
version: 0.2.6-alpha.9
- apiVersion: v2
appVersion: v0.2.6-alpha.8
created: "2023-09-26T12:49:09.500387465Z"
description: A Helm chart for Kubernetes
digest: 34f017a1281c988bccaa307d8e0440c204d761dda182a673a1ce69df5a2f1dfc
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.8/robot-operator-0.2.6-alpha.8.tgz
version: 0.2.6-alpha.8
- apiVersion: v2
appVersion: v0.2.6-alpha.7
created: "2023-09-25T12:52:18.518790393Z"
description: A Helm chart for Kubernetes
digest: efeb3a7a585fe558eda48670ebf72e4c0e027b22534a8aba92d72d29b7b750b6
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.7/robot-operator-0.2.6-alpha.7.tgz
version: 0.2.6-alpha.7
- apiVersion: v2
appVersion: v0.2.6-alpha.5
created: "2023-09-18T13:19:20.768300366Z"
description: A Helm chart for Kubernetes
digest: 073a9fdd6d2c807f22b3bc6ca457508d6c7d37a768f810e45a03509d43290947
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.5/robot-operator-0.2.6-alpha.5.tgz
version: 0.2.6-alpha.5
- apiVersion: v2
appVersion: v0.2.6-alpha.4
created: "2023-09-08T14:52:31.367583692Z"
description: A Helm chart for Kubernetes
digest: 0b52752cf3b4942cd6dab87cfbae10bfc86a57a517ceb75f0618b64e0f4da14c
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.4/robot-operator-0.2.6-alpha.4.tgz
version: 0.2.6-alpha.4
- apiVersion: v2
appVersion: v0.2.6-alpha.3
created: "2023-09-07T12:45:34.844191391Z"
description: A Helm chart for Kubernetes
digest: 621c32b9d28e2463c65c8720c04fff40bcbaa9816ec32b7c756e0d8831f32aa5
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.3/robot-operator-0.2.6-alpha.3.tgz
version: 0.2.6-alpha.3
- apiVersion: v2
appVersion: v0.2.6-alpha.2
created: "2023-08-30T10:48:54.997584259Z"
description: A Helm chart for Kubernetes
digest: ac3dffb74bfbe352ddca6e3a59ebc15ef32a5f4f6b8f06ce71f5fc4f289429af
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.2/robot-operator-0.2.6-alpha.2.tgz
version: 0.2.6-alpha.2
- apiVersion: v2
appVersion: v0.2.6-alpha.1
created: "2023-08-10T13:16:08.500076887Z"
description: A Helm chart for Kubernetes
digest: fa74066387d165d62a40de3b8fccb5528473410bd8bfbf268890042973a38604
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.6-alpha.1/robot-operator-0.2.6-alpha.1.tgz
version: 0.2.6-alpha.1
- apiVersion: v2
appVersion: v0.2.5-alpha.34
created: "2023-08-09T10:22:14.329903879Z"
description: A Helm chart for Kubernetes
digest: 2506ccec4797939bfd5ac170390119341864f7a1d3e50a9fb33278269846482f
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.34/robot-operator-0.2.5-alpha.34.tgz
version: 0.2.5-alpha.34
- apiVersion: v2
appVersion: v0.2.5-alpha.33
created: "2023-08-09T07:51:19.607033458Z"
description: A Helm chart for Kubernetes
digest: 21ec2297aafcb209ee14bc9c28341bcd912246c81ebb334f4cb2066317f1d0ba
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.33/robot-operator-0.2.5-alpha.33.tgz
version: 0.2.5-alpha.33
- apiVersion: v2
appVersion: v0.2.5-alpha.32
created: "2023-08-07T09:14:42.20324227Z"
description: A Helm chart for Kubernetes
digest: e03dd2fd4b36ef2c3a05d31dde5bf101c4b100cbaec6d10f04a4efbc508c0b71
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.32/robot-operator-0.2.5-alpha.32.tgz
version: 0.2.5-alpha.32
- apiVersion: v2
appVersion: v0.2.5-alpha.31
created: "2023-08-07T08:16:23.826187279Z"
description: A Helm chart for Kubernetes
digest: d24b2eb098e0cd94f99a17d7c45b162ddf0e154953fbd52f420ed6731ec2a8c3
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.31/robot-operator-0.2.5-alpha.31.tgz
version: 0.2.5-alpha.31
- apiVersion: v2
appVersion: v0.2.5-alpha.30
created: "2023-08-02T07:49:18.154444398Z"
description: A Helm chart for Kubernetes
digest: 7d6feabce9b76cc240020836b81559f888e5676c53d89d5ebd99c3c5e386b07a
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.30/robot-operator-0.2.5-alpha.30.tgz
version: 0.2.5-alpha.30
- apiVersion: v2
appVersion: v0.2.5-alpha.29
created: "2023-07-20T12:27:40.519243515Z"
description: A Helm chart for Kubernetes
digest: 8fd4d38ed99973126d7a1392c2d136110242d9137dc60bc673760e720bce59a3
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.29/robot-operator-0.2.5-alpha.29.tgz
version: 0.2.5-alpha.29
- apiVersion: v2
appVersion: v0.2.5-alpha.28
created: "2023-07-14T13:03:18.342408151Z"
description: A Helm chart for Kubernetes
digest: c8b224a1eed49bc210e484a80da82b424eef7ea990a89e13d8c7158a0963e3b1
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.28/robot-operator-0.2.5-alpha.28.tgz
version: 0.2.5-alpha.28
- apiVersion: v2
appVersion: v0.2.5-alpha.27
created: "2023-07-12T12:25:24.787935208Z"
description: A Helm chart for Kubernetes
digest: 54b86ffd497c06255e0f4447cbd916352fb5c855b2ea00f07cd1620549b07f02
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.27/robot-operator-0.2.5-alpha.27.tgz
version: 0.2.5-alpha.27
- apiVersion: v2
appVersion: v0.2.5-alpha.26
created: "2023-07-11T15:09:54.39929326Z"
description: A Helm chart for Kubernetes
digest: e19c812a25578a73c6e0735ee1cb2cc5490d42c61d66d90fbab19052d72ad6fc
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.26/robot-operator-0.2.5-alpha.26.tgz
version: 0.2.5-alpha.26
- apiVersion: v2
appVersion: v0.2.5-alpha.25
created: "2023-07-11T14:45:59.776673411Z"
description: A Helm chart for Kubernetes
digest: 91e20ca823aefc0c6b15f1289da9b6639571165843f7ec28875f1a907e5d0376
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.25/robot-operator-0.2.5-alpha.25.tgz
version: 0.2.5-alpha.25
- apiVersion: v2
appVersion: v0.2.5-alpha.24
created: "2023-07-11T13:41:28.937920556Z"
description: A Helm chart for Kubernetes
digest: fa460c2dbceb1bee970cf9d72ce47cff8634fa952efb7714884578a34ed84307
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.24/robot-operator-0.2.5-alpha.24.tgz
version: 0.2.5-alpha.24
- apiVersion: v2
appVersion: v0.2.5-alpha.23
created: "2023-07-07T13:14:12.898155834Z"
description: A Helm chart for Kubernetes
digest: 0bee08e2fe76f96800af74b104b5c0c20f56e033022a901bef03b326c7fbb621
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.23/robot-operator-0.2.5-alpha.23.tgz
version: 0.2.5-alpha.23
- apiVersion: v2
appVersion: v0.2.5-alpha.22
created: "2023-07-07T06:31:16.598735409Z"
description: A Helm chart for Kubernetes
digest: 83fdf874d0206bd3310a9d1a96eeae3334062cb2b9b7bba022c358afb766b37c
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.22/robot-operator-0.2.5-alpha.22.tgz
version: 0.2.5-alpha.22
- apiVersion: v2
appVersion: v0.2.5-alpha.21
created: "2023-07-04T13:47:56.551206329Z"
description: A Helm chart for Kubernetes
digest: 4474e8dfccab1d5feb3d2566551aaa02f9abcbacf1e1a0a603078a29a9f20455
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.21/robot-operator-0.2.5-alpha.21.tgz
version: 0.2.5-alpha.21
- apiVersion: v2
appVersion: v0.2.5-alpha.20
created: "2023-06-23T09:43:35.276540181Z"
description: A Helm chart for Kubernetes
digest: 3e69a1b3844fa5b64559c00c813e02dafe5fb16547594a0ed549d8233b404364
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.20/robot-operator-0.2.5-alpha.20.tgz
version: 0.2.5-alpha.20
- apiVersion: v2
appVersion: v0.2.5-alpha.19
created: "2023-06-21T14:57:55.654576566Z"
description: A Helm chart for Kubernetes
digest: f1e9ef5aa67761311fc79c19b2712dc5b1d4ead10ad1d70481f5ac3163ba6dbc
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.19/robot-operator-0.2.5-alpha.19.tgz
version: 0.2.5-alpha.19
- apiVersion: v2
appVersion: v0.2.5-alpha.18
created: "2023-06-21T13:57:35.077620339Z"
description: A Helm chart for Kubernetes
digest: f87f19e52115d078d74974e757985ad398ddcc65c562f04a99f54d18f839e95c
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.18/robot-operator-0.2.5-alpha.18.tgz
version: 0.2.5-alpha.18
- apiVersion: v2
appVersion: v0.2.5-alpha.17
created: "2023-06-21T12:31:05.102709263Z"
description: A Helm chart for Kubernetes
digest: b61ff19d35fd47b1723b8ba589c0f93a68050d145a1ea2e762a2a423a6a85e75
name: robot-operator
type: application
urls:
- https://github.com/robolaunch/charts/releases/download/robot-operator-0.2.5-alpha.17/robot-operator-0.2.5-alpha.17.tgz
version: 0.2.5-alpha.17
- apiVersion: v2
appVersion: v0.2.5-alpha.16
created: "2023-06-21T11:19:45.969129715Z"
description: A Helm chart for Kubernetes