-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.yaml
1041 lines (1041 loc) · 34.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:
complex-app:
- apiVersion: v2
appVersion: v0.1.1
created: "2023-07-02T11:39:18.030173+02:00"
description: A Helm chart for the Platform Complex Prototype App
digest: 6020efec38cd4823c0427e7eaa2c1d4e972b05e5daff3843e45acf8d5f005848
home: http://github.com/salaboy/prototype-apps
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: complex-app
type: application
urls:
- https://salaboy.github.io/helm/complex-app-v0.1.1.tgz
version: v0.1.1
- apiVersion: v2
appVersion: v0.1.0
created: "2023-07-02T11:39:18.029995+02:00"
description: A Helm chart for the Platform Complex Prototype App
digest: a7abb4f442d2d61eb5fce5db8923fbdbe3c2936d28f31cb0d87b4da58b0ccb47
home: http://github.com/salaboy/prototype-apps
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: complex-app
type: application
urls:
- https://salaboy.github.io/helm/complex-app-v0.1.0.tgz
version: v0.1.0
conference-app:
- apiVersion: v2
appVersion: v1.0.0
created: "2023-07-02T11:39:18.042473+02:00"
dependencies:
- condition: install.infrastructure
name: redis
repository: https://charts.bitnami.com/bitnami
version: 17.11.3
- condition: install.infrastructure
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 12.5.7
- condition: install.infrastructure
name: kafka
repository: https://charts.bitnami.com/bitnami
version: 22.1.5
description: A Helm chart for the Conference App
digest: e6f7951bfa15f6f6765a68107e2dc515966402aba0ae6ceab999cd8aa407c843
home: http://github.com/salaboy/platforms-on-k8s
icon: https://www.salaboy.com/content/images/2023/06/avatar-new.png
keywords:
- cloudnative
- platform-engineering
- platforms
- book
- kubernetes
- tutorial
- example
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: conference-app
type: application
urls:
- https://salaboy.github.io/helm/conference-app-v1.0.0.tgz
version: v1.0.0
dapr-ambient:
- apiVersion: v2
created: "2023-07-02T11:39:18.042966+02:00"
description: Helm Chart For Dapr Ambient Apps
digest: 455f1fdb57673adf1564392232d048d14b998ddd4e5e5d8a98bc853ee4601bd6
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: dapr-ambient
urls:
- https://salaboy.github.io/helm/dapr-ambient-1.10.0.tgz
version: 1.10.0
fmtok8s-agenda-service:
- apiVersion: v2
created: "2023-07-02T11:39:18.057755+02:00"
dependencies:
- condition: redis.enabled
name: redis
repository: https://charts.bitnami.com/bitnami
version: 17.6.0
description: FMTOK8s Agenda Service Helm chart for Kubernetes
digest: 6edee755d691f493807016f3f17a217092ccd6330d1554cb9955c1d6a7879393
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-agenda-service
urls:
- https://salaboy.github.io/helm/fmtok8s-agenda-service-v0.1.2.tgz
version: v0.1.2
- apiVersion: v2
created: "2023-07-02T11:39:18.054326+02:00"
dependencies:
- condition: redis.enabled
name: redis
repository: https://charts.bitnami.com/bitnami
version: 17.6.0
description: FMTOK8s Agenda Service Helm chart for Kubernetes
digest: 850e121f427cb06f0688bff4ea9d422ca2554a5dbe85f6acbeca9d6ace83ecf6
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-agenda-service
urls:
- https://salaboy.github.io/helm/fmtok8s-agenda-service-v0.1.1.tgz
version: v0.1.1
- apiVersion: v2
created: "2023-07-02T11:39:18.050576+02:00"
dependencies:
- condition: redis.enabled
name: redis
repository: https://charts.bitnami.com/bitnami
version: 16.10.1
description: FMTOK8s Agenda Service Helm chart for Kubernetes
digest: 7f6e9397bf6d6f6dd8f017cdef5048c39a99e94ba713e91e8c0f1ae5f2860212
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-agenda-service
urls:
- https://salaboy.github.io/helm/fmtok8s-agenda-service-v0.1.0.tgz
version: v0.1.0
- apiVersion: v2
created: "2023-07-02T11:39:18.047163+02:00"
dependencies:
- condition: redis.enabled
name: redis
repository: https://charts.bitnami.com/bitnami
version: 17.6.0
description: FMTOK8s Agenda Service Helm chart for Kubernetes
digest: 2b2ffe41b9f01b6ed82a2afd71f3114488cba6fa8f1b8933939cf523f763fa05
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-agenda-service
urls:
- https://salaboy.github.io/helm/fmtok8s-agenda-service-v0.0.1.tgz
version: v0.0.1
fmtok8s-c4p-service:
- apiVersion: v2
created: "2023-07-02T11:39:18.066388+02:00"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 11.6.6
description: FMTOK8S C4P Service Helm chart for Kubernetes
digest: 504aab1ba9353d3c6160195484c00736e3c19a55c9c2e5b8466fce9b32e8a821
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-c4p-service
urls:
- https://salaboy.github.io/helm/fmtok8s-c4p-service-v0.1.1.tgz
version: v0.1.1
- apiVersion: v2
created: "2023-07-02T11:39:18.063474+02:00"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 11.6.6
description: FMTOK8S C4P Service Helm chart for Kubernetes
digest: 45dacb77821e99ab93e8130c1240d62c4361af7c55672b4b313db8aec1fe7d78
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-c4p-service
urls:
- https://salaboy.github.io/helm/fmtok8s-c4p-service-v0.1.0.tgz
version: v0.1.0
- apiVersion: v2
created: "2023-07-02T11:39:18.060951+02:00"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 11.6.6
description: FMTOK8S C4P Service Helm chart for Kubernetes
digest: 6cdd7ff2c8fdb41d248ba18acb786f22e5583a5b53246e9605ee080f63694e37
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-c4p-service
urls:
- https://salaboy.github.io/helm/fmtok8s-c4p-service-v0.0.1.tgz
version: v0.0.1
fmtok8s-conference-chart:
- apiVersion: v2
appVersion: 0.1.0
created: "2023-07-02T11:39:18.175623+02:00"
dependencies:
- name: fmtok8s-frontend
repository: https://salaboy.github.io/helm/
version: v0.1.3
- name: fmtok8s-agenda-service
repository: https://salaboy.github.io/helm/
version: v0.1.2
- name: fmtok8s-c4p-service
repository: https://salaboy.github.io/helm/
version: v0.1.1
- name: fmtok8s-email-service
repository: https://salaboy.github.io/helm/
version: v0.1.0
- condition: prometheus.enabled
name: kube-prometheus
repository: https://charts.bitnami.com/bitnami
version: 8.0.8
- condition: grafana.enabled
name: grafana-operator
repository: https://charts.bitnami.com/bitnami
version: 2.6.4
- condition: loki.enabled
name: grafana-loki
repository: https://charts.bitnami.com/bitnami
version: 2.6.2
description: A Helm chart for the Conference App
digest: 56c1864ce870fd15678c4217a1fb75096450cf181aa81d7a2bb7bed5e5c64c51
home: http://github.com/salaboy/from-monolith-to-k8s
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: fmtok8s-conference-chart
type: application
urls:
- https://salaboy.github.io/helm/fmtok8s-conference-chart-v0.1.4.tgz
version: v0.1.4
- apiVersion: v2
appVersion: 0.1.0
created: "2023-07-02T11:39:18.152179+02:00"
dependencies:
- name: fmtok8s-frontend
repository: https://salaboy.github.io/helm/
version: v0.1.2
- name: fmtok8s-agenda-service
repository: https://salaboy.github.io/helm/
version: v0.1.2
- name: fmtok8s-c4p-service
repository: https://salaboy.github.io/helm/
version: v0.1.1
- name: fmtok8s-email-service
repository: https://salaboy.github.io/helm/
version: v0.1.0
- condition: prometheus.enabled
name: kube-prometheus
repository: https://charts.bitnami.com/bitnami
version: 8.0.8
- condition: grafana.enabled
name: grafana-operator
repository: https://charts.bitnami.com/bitnami
version: 2.6.4
- condition: loki.enabled
name: grafana-loki
repository: https://charts.bitnami.com/bitnami
version: 2.6.2
description: A Helm chart for the Conference App
digest: 017aea84b180488f6cfe2f6f97c4f619e45a42bffd8efbfc97f9900a1203c7b3
home: http://github.com/salaboy/from-monolith-to-k8s
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: fmtok8s-conference-chart
type: application
urls:
- https://salaboy.github.io/helm/fmtok8s-conference-chart-v0.1.3.tgz
version: v0.1.3
- apiVersion: v2
appVersion: 0.1.0
created: "2023-07-02T11:39:18.128288+02:00"
dependencies:
- name: fmtok8s-frontend
repository: https://salaboy.github.io/helm/
version: v0.1.1
- name: fmtok8s-agenda-service
repository: https://salaboy.github.io/helm/
version: v0.1.2
- name: fmtok8s-c4p-service
repository: https://salaboy.github.io/helm/
version: v0.1.1
- name: fmtok8s-email-service
repository: https://salaboy.github.io/helm/
version: v0.1.0
- condition: prometheus.enabled
name: kube-prometheus
repository: https://charts.bitnami.com/bitnami
version: 8.0.8
- condition: grafana.enabled
name: grafana-operator
repository: https://charts.bitnami.com/bitnami
version: 2.6.4
- condition: loki.enabled
name: grafana-loki
repository: https://charts.bitnami.com/bitnami
version: 2.6.2
description: A Helm chart for the Conference App
digest: 20dab875417bd792d0e43722b110a4cbde9c263a12c6d24fe4b1007d43c557ef
home: http://github.com/salaboy/from-monolith-to-k8s
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: fmtok8s-conference-chart
type: application
urls:
- https://salaboy.github.io/helm/fmtok8s-conference-chart-v0.1.2.tgz
version: v0.1.2
- apiVersion: v2
appVersion: 0.1.0
created: "2023-07-02T11:39:18.104595+02:00"
dependencies:
- name: fmtok8s-frontend
repository: https://salaboy.github.io/helm/
version: v0.1.1
- name: fmtok8s-agenda-service
repository: https://salaboy.github.io/helm/
version: v0.1.0
- name: fmtok8s-c4p-service
repository: https://salaboy.github.io/helm/
version: v0.1.0
- name: fmtok8s-email-service
repository: https://salaboy.github.io/helm/
version: v0.1.0
description: A Helm chart for a Conference Platform App
digest: 6a6ad37c8e97282bc7c7f970b7eec6fbd52821d8ebd4c84e9dbae519d9f56180
home: http://github.com/salaboy/from-monolith-to-k8s
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: fmtok8s-conference-chart
type: application
urls:
- https://salaboy.github.io/helm/fmtok8s-conference-chart-v0.1.1.tgz
version: v0.1.1
- apiVersion: v2
appVersion: 0.1.0
created: "2023-07-02T11:39:18.097527+02:00"
dependencies:
- name: fmtok8s-frontend
repository: https://salaboy.github.io/helm/
version: v0.1.0
- name: fmtok8s-agenda-service
repository: https://salaboy.github.io/helm/
version: v0.1.0
- name: fmtok8s-c4p-service
repository: https://salaboy.github.io/helm/
version: v0.1.0
- name: fmtok8s-email-service
repository: https://salaboy.github.io/helm/
version: v0.2.0
description: A Helm chart for a Conference Platform App
digest: 48f0862c397cd9f2a83bfce5937faeaf1f01c303a8594ec4e83e1943f3e3b107
home: http://github.com/salaboy/from-monolith-to-k8s
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: fmtok8s-conference-chart
type: application
urls:
- https://salaboy.github.io/helm/fmtok8s-conference-chart-v0.1.0.tgz
version: v0.1.0
- apiVersion: v2
appVersion: 0.1.0
created: "2023-07-02T11:39:18.091123+02:00"
dependencies:
- name: fmtok8s-frontend
repository: https://salaboy.github.io/helm/
version: v0.1.1
- name: fmtok8s-agenda-service
repository: https://salaboy.github.io/helm/
version: v0.1.2
- name: fmtok8s-c4p-service
repository: https://salaboy.github.io/helm/
version: v0.1.1
- name: fmtok8s-email-service
repository: https://salaboy.github.io/helm/
version: v0.1.0
- condition: prometheus.enabled
name: kube-prometheus
repository: https://charts.bitnami.com/bitnami
version: 8.0.8
- condition: grafana.enabled
name: grafana-operator
repository: https://charts.bitnami.com/bitnami
version: 2.6.4
- condition: loki.enabled
name: grafana-loki
repository: https://charts.bitnami.com/bitnami
version: 2.6.2
description: A Helm chart for the Conference App
digest: d03cf733713e2c12bf20018c007604707cfb98542fc577ab6156bc79c9c9432e
home: http://github.com/salaboy/from-monolith-to-k8s
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: fmtok8s-conference-chart
type: application
urls:
- https://salaboy.github.io/helm/fmtok8s-conference-chart-v0.0.1.tgz
version: v0.0.1
fmtok8s-email-service:
- apiVersion: v2
created: "2023-07-02T11:39:18.177252+02:00"
description: FMTOK8S Email Service (REST) Helm chart for Kubernetes
digest: f88f18d06705b28bc721380ff8b808b6c33a0333b286da380812d831dd31e02f
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-email-service
urls:
- https://salaboy.github.io/helm/fmtok8s-email-service-v0.2.0.tgz
version: v0.2.0
- apiVersion: v2
created: "2023-07-02T11:39:18.17705+02:00"
description: FMTOK8S Email Service (REST) Helm chart for Kubernetes
digest: 124dc94324b2b83d3632727612a7f76097f7f2cc01441ae4cc0c95bd446f56eb
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-email-service
urls:
- https://salaboy.github.io/helm/fmtok8s-email-service-v0.1.1.tgz
version: v0.1.1
- apiVersion: v2
created: "2023-07-02T11:39:18.176842+02:00"
description: FMTOK8S Email Service Helm chart for Kubernetes
digest: eb588094c5d1bdafc70cdee2754a7048cde016d8297aecb546c74bcdd53aec8a
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-email-service
urls:
- https://salaboy.github.io/helm/fmtok8s-email-service-v0.1.0.tgz
version: v0.1.0
- apiVersion: v2
created: "2023-07-02T11:39:18.176626+02:00"
description: FMTOK8S Email Service (REST) Helm chart for Kubernetes
digest: 397c66a320f766adaba771fe5aa754ea88a78e8a6824894b181eb2275b3f33b4
icon: https://raw.githubusercontent.com/cdfoundation/artwork/master/jenkinsx/icon/color/jenkinsx-icon-color.png
name: fmtok8s-email-service
urls:
- https://salaboy.github.io/helm/fmtok8s-email-service-v0.0.23-test-3.tgz
version: v0.0.23-test-3
- apiVersion: v2
created: "2023-07-02T11:39:18.176293+02:00"
description: FMTOK8S Email Service Helm chart for Kubernetes
digest: 930990c714ebb6642f0812eb9b794053401d4b6106d6c14ffed4acb998131861
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-email-service
urls:
- https://salaboy.github.io/helm/fmtok8s-email-service-v0.0.1.tgz
version: v0.0.1
- apiVersion: v2
created: "2023-07-02T11:39:18.175933+02:00"
description: FMTOK8S Email Service (REST) Helm chart for Kubernetes
digest: eb9234e2835ce92c7b1df48e42763749c27f2f9549d52f8c79deb8298828adb9
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-email-service
urls:
- https://salaboy.github.io/helm/fmtok8s-email-service-v0.0.1-native.tgz
version: v0.0.1-native
fmtok8s-frontend:
- apiVersion: v2
created: "2023-07-02T11:39:18.178762+02:00"
description: FMTOK8s Frontend Service Helm chart for Kubernetes
digest: 52a28921f4da619a8786d42110b3038ed9a350c27a4b0ccc0051b995725963a6
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-frontend
urls:
- https://salaboy.github.io/helm/fmtok8s-frontend-v0.1.3.tgz
version: v0.1.3
- apiVersion: v2
created: "2023-07-02T11:39:18.178454+02:00"
description: FMTOK8s Frontend Service Helm chart for Kubernetes
digest: 0fc416e5ed7e3e6b812ba07f89bdbbd7c0a5fe9357cabd4aebbb49c4c4ee98e8
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-frontend
urls:
- https://salaboy.github.io/helm/fmtok8s-frontend-v0.1.2.tgz
version: v0.1.2
- apiVersion: v2
created: "2023-07-02T11:39:18.178128+02:00"
description: FMTOK8s Frontend Service Helm chart for Kubernetes
digest: 5ba66d2b7df5c8a733b22e8dadcd7bd08785ae6ae4ed5f78b236bd50f79d6180
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-frontend
urls:
- https://salaboy.github.io/helm/fmtok8s-frontend-v0.1.1.tgz
version: v0.1.1
- apiVersion: v2
created: "2023-07-02T11:39:18.177805+02:00"
description: FMTOK8s Frontend Service Helm chart for Kubernetes
digest: 6f22884b904bb231e9bc12e6065661614c3a6428150567944c5feaf95a3ac9f2
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-frontend
urls:
- https://salaboy.github.io/helm/fmtok8s-frontend-v0.1.0.tgz
version: v0.1.0
- apiVersion: v2
created: "2023-07-02T11:39:18.177598+02:00"
description: FMTOK8s Frontend Service Helm chart for Kubernetes
digest: 6fb8fdd8036e19a27d85a1ec88be9772da2255bf8d64876b77a0daf5168fba9f
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: fmtok8s-frontend
urls:
- https://salaboy.github.io/helm/fmtok8s-frontend-v0.0.1.tgz
version: v0.0.1
fmtok8s-payments-service:
- apiVersion: v2
created: "2023-07-02T11:39:18.179098+02:00"
description: 3rd Party Payment Service
digest: 45260b5f4725ab935298b38a4bf2bcc266d5c1251a5af46cf91ff82720de6f7e
icon: https://raw.githubusercontent.com/jenkins-x/jenkins-x-platform/d273e09/images/nodejs.png
name: fmtok8s-payments-service
urls:
- https://salaboy.github.io/helm/fmtok8s-payments-service-0.1.0.tgz
version: 0.1.0
fmtok8s-queue-service:
- apiVersion: v2
created: "2023-07-02T11:39:18.179431+02:00"
description: Queue Service for Tickets Application
digest: 2ff573e8ed5cc5efd6f8983dcde53e1da06798ce89af1f593c4214d55700c84e
icon: https://raw.githubusercontent.com/jenkins-x/jenkins-x-platform/d273e09/images/nodejs.png
name: fmtok8s-queue-service
urls:
- https://salaboy.github.io/helm/fmtok8s-queue-service-0.1.0.tgz
version: 0.1.0
fmtok8s-tickets:
- apiVersion: v2
appVersion: 0.1.0
created: "2023-07-02T11:39:18.180237+02:00"
dependencies:
- name: fmtok8s-payments-service
repository: https://salaboy.github.io/helm/
version: 0.1.0
- name: fmtok8s-queue-service
repository: https://salaboy.github.io/helm/
version: 0.1.0
- name: fmtok8s-tickets-service
repository: https://salaboy.github.io/helm/
version: 0.1.0
description: A Helm chart for the Conference Platform App Tickets Flow
digest: 394f82a79cbd312c0b20139df8cf7965c8527e2bc06a0650a9daf5427bbf3923
home: http://github.com/salaboy/from-monolith-to-k8s
icon: https://salaboy.files.wordpress.com/2014/12/img_0008.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: fmtok8s-tickets
type: application
urls:
- https://salaboy.github.io/helm/fmtok8s-tickets-0.1.0.tgz
version: 0.1.0
fmtok8s-tickets-service:
- apiVersion: v2
created: "2023-07-02T11:39:18.180559+02:00"
description: Tickets Service Helm Chart
digest: 972b9a11a2ab2f6adaa39173ac2cc7512b11deaf96a4c537df1838a289c6066e
icon: https://raw.githubusercontent.com/jenkins-x/jenkins-x-platform/d273e09/images/nodejs.png
name: fmtok8s-tickets-service
urls:
- https://salaboy.github.io/helm/fmtok8s-tickets-service-0.1.0.tgz
version: 0.1.0
helm-chart-example:
- apiVersion: v2
appVersion: 0.1.0
created: "2023-07-02T11:39:18.181108+02:00"
description: Example Helm Chart
digest: 8dedd2ab1ff6a28aabf2d0eb71ba054f73288d00fac247696650ca75dc981617
home: http://github.com/salaboy/helm-chart-example
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- helm
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: helm-chart-example
type: application
urls:
- https://salaboy.github.io/helm/helm-chart-example-0.1.0.tgz
version: 0.1.0
knative-helm-operator:
- apiVersion: v2
created: "2023-07-02T11:39:18.182638+02:00"
description: Helm Chart Knative Operator
digest: ff98d9bd1e2c80bb7b7dde3b5cd184f1386fd80bd71fb78842291ab46bbc1919
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
name: knative-helm-operator
urls:
- https://salaboy.github.io/helm/knative-helm-operator-1.9.0.tgz
version: 1.9.0
kubeday-japan-app:
- apiVersion: v2
appVersion: v0.1.1
created: "2023-07-02T11:39:18.189148+02:00"
dependencies:
- name: redis
repository: https://charts.bitnami.com/bitnami
version: 17.3.6
description: A Helm chart for the KubeDay Japan application
digest: c9e4afc2e20cd5e610d22337cfe081f342816287e4c7cfdc529782b90a5dbb93
home: http://github.com/salaboy/from-monolith-to-k8s
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: kubeday-japan-app
type: application
urls:
- https://salaboy.github.io/helm/kubeday-japan-app-v0.1.1.tgz
version: v0.1.1
- apiVersion: v2
appVersion: v0.1.0
created: "2023-07-02T11:39:18.186201+02:00"
dependencies:
- name: redis
repository: https://charts.bitnami.com/bitnami
version: 17.3.6
description: A Helm chart for the KubeDay Japan application
digest: ec2c90df243b8ab5d8a5aabd7ee43f55eb4139b49bcdc117c9e12d50297ab65a
home: http://github.com/salaboy/from-monolith-to-k8s
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: kubeday-japan-app
type: application
urls:
- https://salaboy.github.io/helm/kubeday-japan-app-v0.1.0.tgz
version: v0.1.0
proto-app:
- apiVersion: v2
appVersion: v0.1.1
created: "2023-07-02T11:39:18.189685+02:00"
description: A Helm chart for the Platform Prototype App
digest: c4ac9e540040049df87b474b256e604231a40ce891638b01170930fda9b6bbda
home: http://github.com/salaboy/prototype-apps
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: proto-app
type: application
urls:
- https://salaboy.github.io/helm/proto-app-v0.1.1.tgz
version: v0.1.1
- apiVersion: v2
appVersion: v0.1.0
created: "2023-07-02T11:39:18.189436+02:00"
description: A Helm chart for the Platform Prototype App
digest: 651bdcde47c5414016af045a6adc6bb21f3609a3e5485fdf0fae19d9c8f5e201
home: http://github.com/salaboy/prototype-apps
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: proto-app
type: application
urls:
- https://salaboy.github.io/helm/proto-app-v0.1.0.tgz
version: v0.1.0
rainbows-as-a-service:
- apiVersion: v2
appVersion: 0.1.0
created: "2023-07-02T11:39:18.189812+02:00"
description: A Helm chart for the Rainbows as a Service App
digest: d8c8bcdf31b864aea768c8c55f67cce9fa33125f517c7c2b0610ddc8bb8ba1a8
home: http://github.com/salaboy/from-monolith-to-k8s
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- kubecon
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: rainbows-as-a-service
type: application
urls:
- https://salaboy.github.io/helm/rainbows-as-a-service-0.1.0.tgz
version: 0.1.0
rejekts-app:
- apiVersion: v2
appVersion: v0.2.3
created: "2023-07-02T11:39:18.191034+02:00"
description: A Helm chart for the Rejekts EU application
digest: 4a5ed8c49049cf61649bbb820aa84835bcc44fceb613dcf53d30df267ef0cffc
home: http://github.com/salaboy/rejekts-eu-2023
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: rejekts-app
type: application
urls:
- https://salaboy.github.io/helm/rejekts-app-v0.2.3.tgz
version: v0.2.3
- apiVersion: v2
appVersion: v0.2.2
created: "2023-07-02T11:39:18.190791+02:00"
description: A Helm chart for the Rejekts EU application
digest: 5ed1574902591c83817df7034b4f5b515b24ac414a68b2ea1442747506e84414
home: http://github.com/salaboy/rejekts-eu-2023
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: rejekts-app
type: application
urls:
- https://salaboy.github.io/helm/rejekts-app-v0.2.2.tgz
version: v0.2.2
- apiVersion: v2
appVersion: v0.2.1
created: "2023-07-02T11:39:18.190555+02:00"
description: A Helm chart for the Rejekts EU application
digest: fa651177909ebd9211a59c22db997cc39237f7a0e9d1a89ac69ac7b55623c85e
home: http://github.com/salaboy/rejekts-eu-2023
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: rejekts-app
type: application
urls:
- https://salaboy.github.io/helm/rejekts-app-v0.2.1.tgz
version: v0.2.1
- apiVersion: v2
appVersion: v0.2.0
created: "2023-07-02T11:39:18.190288+02:00"
description: A Helm chart for the Rejekts EU application
digest: 00379c40bac8840aac9c8906be0e0bd27534eedb0a1a6b1c6359144ea66afa9d
home: http://github.com/salaboy/rejekts-eu-2023
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: rejekts-app
type: application
urls:
- https://salaboy.github.io/helm/rejekts-app-v0.2.0.tgz
version: v0.2.0
- apiVersion: v2
appVersion: v0.1.0
created: "2023-07-02T11:39:18.190039+02:00"
description: A Helm chart for the Rejekts EU application
digest: df10e53f8255a4454010aef9a9fd78b5b9757590b78f8f333420a348c06e6d20
home: http://github.com/salaboy/rejekts-eu-2023
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: rejekts-app
type: application
urls:
- https://salaboy.github.io/helm/rejekts-app-v0.1.0.tgz
version: v0.1.0
weird:
- apiVersion: v2
appVersion: 0.1.5
created: "2023-07-02T11:39:18.210552+02:00"
dependencies:
- name: redis
repository: https://charts.bitnami.com/bitnami
version: 17.3.6
description: A Helm chart for a weird application
digest: 706f64a4521b68025cd8a9735bb9ff1868b7e04b7d8a1ea9bf32e2b3ea8ef6c5
home: http://github.com/salaboy/from-monolith-to-k8s
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: weird
type: application
urls:
- https://salaboy.github.io/helm/weird-0.1.5.tgz
version: 0.1.5
- apiVersion: v2
appVersion: 0.1.4
created: "2023-07-02T11:39:18.207456+02:00"
dependencies:
- name: redis
repository: https://charts.bitnami.com/bitnami
version: 17.3.6
description: A Helm chart for a weird application
digest: d54d0ccd27f27d0d24c7bd947b3dd4ca45e0945d399dc3f947699d3bc9f5574d
home: http://github.com/salaboy/from-monolith-to-k8s
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: weird
type: application
urls:
- https://salaboy.github.io/helm/weird-0.1.4.tgz
version: 0.1.4
- apiVersion: v2
appVersion: 0.1.3
created: "2023-07-02T11:39:18.20398+02:00"
dependencies:
- name: redis
repository: https://charts.bitnami.com/bitnami
version: 17.3.6
description: A Helm chart for a weird application
digest: d3fde33f4a849896c91996b7ca245343553b5bd1771bba85d373ba8f2fd69fc6
home: http://github.com/salaboy/from-monolith-to-k8s
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: weird
type: application
urls:
- https://salaboy.github.io/helm/weird-0.1.3.tgz
version: 0.1.3
- apiVersion: v2
appVersion: 0.1.2
created: "2023-07-02T11:39:18.200908+02:00"
dependencies:
- name: redis
repository: https://charts.bitnami.com/bitnami
version: 17.3.6
description: A Helm chart for a weird application
digest: 8222febb6f6fb53c209508528f08b66a5e723e8ac80e1bec2715ef98d76822e7
home: http://github.com/salaboy/from-monolith-to-k8s
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords:
- cloudnative
- example
- cd
- kubernetes
- tutorial
maintainers:
- email: [email protected]
name: salaboy
url: http://salaboy.com
name: weird
type: application
urls:
- https://salaboy.github.io/helm/weird-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
appVersion: 0.1.1
created: "2023-07-02T11:39:18.197436+02:00"
dependencies:
- name: redis
repository: https://charts.bitnami.com/bitnami
version: 17.3.6
description: A Helm chart for a weird application
digest: 21c1dcada22a9ec5c7b11fbc8007b2e1bc4963e20b89d5debf3571f300660baf
home: http://github.com/salaboy/from-monolith-to-k8s
icon: https://salaboy.files.wordpress.com/2019/07/avatar.png
keywords: