-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsolutions.yaml
More file actions
2312 lines (2312 loc) · 75.7 KB
/
solutions.yaml
File metadata and controls
2312 lines (2312 loc) · 75.7 KB
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
solutions:
- name: canonical kubernetes (snap)
category: Desktop
url: https://github.com/canonical/k8s-snap
icon_url: https://avatars.githubusercontent.com/u/53057619?s=200&v=4
icon_background_color: light
publisher: Canonical
description: Kubernetes distribution packaged as a snap for easy installation on
Ubuntu
license: Apache 2.0
open_source: true
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 9 (canonical kubernetes)
tags:
- local
- development
- name: colima
category: Desktop
url: https://github.com/abiosoft/colima
icon_url: https://github.com/abiosoft/colima/raw/main/colima.png
icon_background_color: light
description: Container runtime with Kubernetes support for macOS and Linux
license: MIT
open_source: true
based_on:
- lima-vm
references:
- title: Cloud Native development with Colima
language: en
url: https://dischord.org/2024/10/27/cloud-native-development-with-colima/
type: article
tags:
- local
- development
- macos
stars: 26700
- name: crc (openshift 4 on a desktop)
category: Desktop
url: https://github.com/crc-org/crc
icon_url: https://avatars.githubusercontent.com/u/46589369?s=120
publisher: Openshift
description: Local OpenShift 4 cluster for development on a workstation
license: Apache 2.0
open_source: true
based_on:
- Openshift / OKD
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 13 (crc)
- title: Setting up Redhat Openshift Local on your Laptop
language: en
url: https://virtutechnotes.in/setting-up-redhat-openshift-local-on-your-laptop/
type: article
tags:
- local
- development
- virtualization
stars: 1400
- name: Desktop-Kubernetes
category: Desktop
url: https://github.com/aceeric/desktop-kubernetes
icon_url: https://github.com/aceeric/desktop-kubernetes/raw/main/resources/desktop-kubernetes-no-text.jpg
icon_background_color: light
description: Automated tool for deploying production-like Kubernetes clusters on
desktop VMs
license: Apache 2.0
open_source: true
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 10 (Desktop-Kubernetes)
tags:
- local
- development
- virtualization
- name: Docker desktop
category: Desktop
url: https://www.docker.com/products/docker-desktop/
icon_url: https://www.docker.com/wp-content/uploads/2022/03/Moby-logo.png
publisher: Docker (Mirantis)
description: Docker Desktop's built-in Kubernetes cluster for local development
license: Proprietary
open_source: false
based_on:
- kubeadm
- kind
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 3 (Docker desktop)
- title: Kubernetes on Docker Desktop in 2 Minutes
language: en
url: https://collabnix.com/kubernetes-on-docker-desktop-in-2-minutes/
type: article
tags:
- local
- development
- virtualization
- gui
- name: k3d
category: Desktop
url: https://github.com/k3d-io/k3d
icon_url: https://raw.githubusercontent.com/k3d-io/k3d/main/docs/static/img/k3d_logo_black_blue.svg
publisher: Rancher
description: Lightweight Kubernetes clusters in Docker for local development and
testing
license: Apache 2.0
open_source: true
based_on:
- k3s
stars: 6200
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 7 (k3d)
- title: Local Kubernetes stack with k3d in seconds
language: en
url: https://ianhomer.com/deploying-a-local-kubernetes-cluster-with-k3d/
type: article
tags:
- local
- development
- lightweight
- name: kind
category: Desktop
url: https://github.com/kubernetes-sigs/kind
icon_url: https://raw.githubusercontent.com/kubernetes-sigs/kind/main/logo/logo.png
description: Kubernetes in Docker - tool for running local Kubernetes clusters using
Docker containers
license: Apache 2.0
open_source: true
based_on:
- kubeadm
stars: 15000
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 1 (kind)
- title: Getting Started with Kind for Local Kubernetes Development
language: en
url: https://betterstack.com/community/guides/scaling-docker/kind/
type: article
tags:
- local
- development
- container-based
- name: kubefire
category: Desktop
url: https://github.com/innobead/kubefire
description: Multi-distribution Kubernetes cluster manager using firecracker microVMs
license: Apache 2.0
open_source: true
based_on:
- kubeadm
- k3s
- rke2
- k0s
abandoned: true
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 12 (kubefire)
tags:
- local
- development
- virtualization
stars: 600
- name: lima-vm
category: Desktop
url: https://github.com/lima-vm/lima/blob/master/templates/k8s.yaml
icon_url: https://raw.githubusercontent.com/lima-vm/lima/master/docs/images/lima-logo-01.svg
icon_background_color: light
description: Linux virtual machines with Kubernetes support for macOS
license: Apache 2.0
open_source: true
based_on:
- kubeadm
- k3s
- rke2
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 8 (lima-vm)
- title: Mac - how to use kubernetes with Lima-VM
language: en
url: https://infoheap.com/mac-use-kubernetes-with-lima-vm/
type: article
tags:
- local
- development
- macos
stars: 20200
- name: microk8s
category: Desktop
url: https://github.com/canonical/microk8s
icon_url: https://ubuntu.com/wp-content/uploads/305a/microk8s-sticker.png
publisher: Canonical
description: Low-ops, minimal production Kubernetes for clusters, workstations,
edge and IoT
license: Apache 2.0
open_source: true
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 2 (microk8s)
- title: Installer MicroK8s dans WSL 2
language: fr
url: https://blog.zwindler.fr/2020/06/01/installer-microk8s-dans-wsl-2/
type: article
- title: Setting Up a MicroK8s Kubernetes Cluster on Ubuntu
language: en
url: https://mangohost.net/blog/setting-up-a-microk8s-kubernetes-cluster-on-ubuntu-24/
type: article
tags:
- local
- development
- lightweight
stars: 9200
- name: Minikube
category: Desktop
url: https://github.com/kubernetes/minikube
icon_url: https://raw.githubusercontent.com/kubernetes/minikube/master/images/logo/logo.svg
description: Local Kubernetes cluster for development and testing on various platforms
license: Apache 2.0
open_source: true
based_on:
- kubeadm
stars: 31500
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 6 (Minikube)
- title: Minikube sur Hyper-V - Part 2 - Troubleshooting de l'installation
language: fr
url: https://blog.zwindler.fr/2018/10/02/minikube-sur-hyper-v-part-2-troubleshooting-de-linstallation/
type: article
- title: A Guide to Local Kubernetes Development with Minikube
language: en
url: https://betterstack.com/community/guides/scaling-docker/minikube/
type: tutorial
tags:
- local
- development
- beginner-friendly
- name: Minishift
category: Desktop
url: https://github.com/minishift/minishift
icon_url: https://avatars.githubusercontent.com/u/23212309?s=200&v=4
publisher: Red Hat
description: Tool for running OpenShift 3.x locally using a single-node cluster
license: Apache 2.0
open_source: true
based_on:
- Openshift / OKD
abandoned: true
references:
- title: Getting Started with Minishift
language: en
url: https://www.gleamingthekube.com/getting-started-with-minishift/
type: article
tags:
- local
- development
- virtualization
stars: 2500
- name: mykube
category: Desktop
url: https://github.com/guyst16/mykube
icon_url: https://user-images.githubusercontent.com/100173467/202854244-a0b4d1c7-27a5-45f0-a2cb-b93615993c11.png
description: Lightweight local Kubernetes cluster manager for development
license: Apache 2.0
open_source: true
based_on:
- kubeadm
tags:
- local
- development
- beginner-friendly
- name: Oracle Cloud Native Environment
category: Desktop
url: https://github.com/oracle-cne/ocne
icon_url: https://avatars.githubusercontent.com/u/179813183?s=200&v=4
publisher: Oracle
description: Integrated operating environment for developing cloud-native applications
with Kubernetes
license: Apache 2.0
open_source: true
tags:
- local
- development
- enterprise
- name: Orbstack
category: Desktop
url: https://orbstack.dev/
icon_url: https://camo.githubusercontent.com/d20582f77f0d485f7ab60b8e5c3116591e0abae14ad12ca91fe8f9d23ca254ff/68747470733a2f2f6f7262737461636b2e6465762f696d672f69636f6e3235362e706e67
publisher: Orbital Stack
description: Fast, lightweight container runtime and Kubernetes for macOS
license: Proprietary
open_source: false
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 5 (Orbstack)
- title: Running Containers Natively on Mac with Orbstack
language: en
url: https://www.corpit.org/running-containers-natively-on-mac-with-orbstack/
type: article
tags:
- local
- development
- macos
- gui
- name: Podman Desktop
category: Desktop
url: https://github.com/podman-desktop/podman-desktop
icon_url: https://avatars.githubusercontent.com/u/129859460?s=200&v=4
publisher: Podman Desktop
description: Container and Kubernetes management tool with desktop interface for
Podman
license: Apache 2.0
open_source: true
based_on:
- kind
- minikube
references:
- title: Working with Kubernetes in Podman Desktop - Red Hat Developer
language: en
url: https://developers.redhat.com/articles/2023/11/06/working-kubernetes-podman-desktop
type: article
tags:
- local
- development
- container-based
- gui
stars: 7300
- name: Rancher Desktop
category: Desktop
url: https://github.com/rancher-sandbox/rancher-desktop
icon_url: https://rancherdesktop.io/images/icon-rancher-desktop.svg
publisher: Rancher
description: Container management and Kubernetes on the desktop with choice of runtime
license: Apache 2.0
open_source: true
based_on:
- LimaVM
- k3s
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 4 (Rancher Desktop)
tags:
- local
- development
- gui
stars: 7000
- name: vind
category: Desktop
url: https://github.com/loft-sh/vind
publisher: loft.sh
description: vCluster in Docker. Run Kubernetes clusters as Docker containers
license: Apache 2.0
icon_url: https://avatars.githubusercontent.com/u/65466868?s=200&v=4
open_source: true
based_on:
- vcluster
tags:
- local
- development
- container-based
- name: aks-engine
category: InfraAsCode
url: https://github.com/Azure/aks-engine
icon_url: https://azure.microsoft.com/svghandler/kubernetes-service/
publisher: Azure
description: Tool for provisioning self-managed Kubernetes clusters on Azure
license: Apache 2.0
open_source: true
abandoned: true
tags:
- automation
- infrastructure-as-code
stars: 500
- name: Alvistack Ansible
category: InfraAsCode
url: https://github.com/alvistack/ansible-collection-kubernetes
icon_url: https://avatars.githubusercontent.com/u/26567351?s=200&v=4
publisher: Alvistack
description: Ansible collection for Kubernetes deployment and configuration management
license: Apache 2.0
open_source: true
based_on:
- kubeadm
tags:
- automation
- infrastructure-as-code
- name: Alvistack Vagrant-kubernetes
category: InfraAsCode
url: https://github.com/alvistack/vagrant-kubernetes
icon_url: https://avatars.githubusercontent.com/u/26567351?s=200&v=4
publisher: Alvistack
description: Vagrant-based Kubernetes cluster provisioning for development environments
license: Apache 2.0
open_source: true
based_on:
- kubeadm
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 11 (Alvistack Vagrant-kubernetes)
tags:
- automation
- infrastructure-as-code
- name: Crossplane
category: InfraAsCode
url: https://github.com/crossplane/crossplane
icon_url: https://avatars.githubusercontent.com/u/45158470?s=200&v=4
description: Universal control plane for cloud infrastructure and services via Kubernetes
API
license: Apache 2.0
open_source: true
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 37 (Crossplane)
- title: Step-by-step guide to working with Crossplane and Kubernetes
language: en
url: https://www.techtarget.com/searchitoperations/tutorial/Step-by-step-guide-to-working-with-Crossplane-and-Kubernetes
type: tutorial
tags:
- automation
- infrastructure-as-code
stars: 11400
production_ready: true
- name: Cybozu Kubernetes Engine (CKE)
category: InfraAsCode
url: https://github.com/cybozu-go/cke
icon_url: https://avatars.githubusercontent.com/u/17453711?s=200&v=4
publisher: Cybozu
description: Automated Kubernetes cluster management tool for on-premises infrastructure
license: Apache 2.0
open_source: true
tags:
- automation
- infrastructure-as-code
- name: Kube-hetzner
category: InfraAsCode
url: https://github.com/kube-hetzner/terraform-hcloud-kube-hetzner
icon_url: https://github.com/kube-hetzner/terraform-hcloud-kube-hetzner/raw/master/.images/kube-hetzner-logo.png
description: Automated Kubernetes deployment on Hetzner Cloud with Terraform / Opentofu
license: MIT
open_source: true
based_on:
- Terraform / OpenTofu
references:
- title: Getting Started with Kube-Hetzner
language: en
url: https://deepwiki.com/kube-hetzner/terraform-hcloud-kube-hetzner/1.1-getting-started
type: article
- title: Kubernetes cluster on Hetzner using k3s and Terraform
language: en
url: https://bogoyavlensky.com/blog/kubernetes-hetzner/
type: article
- title: Cheap self-hosted Kubernetes on Hetzner Cloud
language: en
url: https://blog.qstars.nl/posts/cheap-self-hosted-kubernetes-on-hetzner-cloud/
type: article
tags:
- automation
- infrastructure-as-code
stars: 3700
- name: Kubeasz (Chinese documentation only)
category: InfraAsCode
url: https://github.com/easzlab/kubeasz
icon_url: https://github.com/easzlab/kubeasz/raw/master/docs/pics/kubeasz.svg
icon_background_color: light
publisher: EaszLab
description: Kubernetes cluster deployment tool (Chinese documentation only)
license: MIT
open_source: true
tags:
- automation
- infrastructure-as-code
stars: 11300
- name: Kubernetes ClusterAPI
category: InfraAsCode
url: https://github.com/kubernetes-sigs/cluster-api
icon_url: https://raw.githubusercontent.com/kubernetes-sigs/cluster-api/main/docs/book/src/images/introduction.svg
description: Declarative Kubernetes-style APIs for cluster lifecycle management
license: Apache 2.0
open_source: true
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 33 (Kubernetes ClusterAPI)
- title: 'Cluster API Quickstart: A Step-by-Step Guide'
language: en
url: https://www.plural.sh/blog/cluster-api-quickstart-guide/
type: tutorial
- title: Getting Started with Kubernetes Cluster API
language: en
url: https://sesamedisk.com/getting-started-with-kubernetes-cluster-api-a-comprehensive-guide/
type: article
tags:
- automation
- infrastructure-as-code
stars: 4100
production_ready: true
- name: Kubespray
category: InfraAsCode
url: https://github.com/kubernetes-sigs/kubespray
icon_url: https://kubespray.io/logo/logo-clear.png
description: Production-ready Kubernetes cluster deployment using Ansible
license: Apache 2.0
open_source: true
based_on:
- kubeadm
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 32 (Kubespray)
- title: Installer Kubernetes avec Kubespray (Ansible)
language: fr
url: https://blog.zwindler.fr/2017/12/05/installer-kubernetes-kubespray-ansible/
type: article
- title: How to Install Kubernetes Cluster Using Kubespray
language: en
url: https://itsfoss.gitlab.io/post/how-to-install-kubernetes-cluster-using-kubespray/
type: article
- title: How to deploy Kubernetes using Kubespray
language: en
url: https://upcloud.com/resources/tutorials/deploy-kubernetes-using-kubespray/
type: article
- title: How to Deploy a Kubernetes Cluster Using Kubespray
language: en
url: https://www.densify.com/kubernetes-tools/kubespray/
type: article
tags:
- automation
- infrastructure-as-code
stars: 18200
production_ready: true
- name: OpenTofu
category: InfraAsCode
url: https://github.com/opentofu/opentofu
icon_url: https://avatars.githubusercontent.com/u/142061836?s=200&v=4
description: Open-source infrastructure as code tool, fork of Terraform
license: MPL 2.0
open_source: true
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 34 (OpenTofu)
- title: How to Deploy Applications in Kubernetes using OpenTofu
language: en
url: https://www.itwonderlab.com/kubernetes-with-opentofu/
type: article
- title: 'OpenTofu Tutorial: Getting Started & Examples'
language: en
url: https://spacelift.io/blog/opentofu-tutorial
type: tutorial
tags:
- automation
- infrastructure-as-code
production_ready: true
stars: 27800
- name: Pulumi
category: InfraAsCode
url: https://github.com/pulumi/pulumi
icon_url: https://www.pulumi.com/logos/brand/avatar-on-white.svg
publisher: Pulumi Services
description: Infrastructure as code platform with Kubernetes support across multiple
clouds
license: Apache 2.0
open_source: true
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 36 (Pulumi)
- title: Create a Kubernetes Deployment with Pulumi
language: en
url: https://www.pulumi.com/guides/how-to/kubernetes-deployment/
type: article
- title: Infrastructure as Code (IaC) on OVHcloud - Pulumi
language: en
url: https://blog.ovhcloud.com/infrastructure-as-code-iac-on-ovhcloud-part-1-terraform-opentofu/
type: article
tags:
- automation
- infrastructure-as-code
stars: 24700
production_ready: true
- name: Puppet
category: InfraAsCode
url: https://forge.puppet.com/modules/puppetlabs/kubernetes/readme
icon_url: https://gravatar.com/avatar/fdd009b7c1ec96e088b389f773e87aec.png?r=pg&s=75&d=404
publisher: Perforce Software
description: Configuration management tool with Kubernetes cluster provisioning
capabilities
license: Apache 2.0
open_source: true
based_on:
- kubeadm
references:
- title: Puppet and Kubernetes - DEV Community Tutorial
language: en
url: https://dev.to/betadots/puppet-and-kubernetes-182e
type: tutorial
- title: Puppet & Kubernetes Configuration Management Guide
language: en
url: https://betanet.net/view-post/puppet-and-kubernetes-a-comprehensive-guide
type: tutorial
tags:
- automation
- infrastructure-as-code
- name: Terraform
category: InfraAsCode
url: https://github.com/hashicorp/terraform
icon_url: https://avatars.githubusercontent.com/u/761456?s=200&v=4
publisher: HashiCorp
description: Infrastructure as code tool for building, changing, and versioning infrastructure
license: BUSL 1.1
open_source: false
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 34 (OpenTofu)
- title: How to Provision an AWS EKS Kubernetes Cluster with Terraform (dev.to/spacelift)
language: en
url: https://dev.to/spacelift/how-to-provision-an-aws-eks-kubernetes-cluster-with-terraform-step-by-step-1k4c
type: tutorial
tags:
- automation
- infrastructure-as-code
production_ready: true
stars: 47600
- name: typhoon
category: InfraAsCode
url: https://github.com/poseidon/typhoon
icon_url: https://raw.githubusercontent.com/poseidon/typhoon/main/docs/img/typhoon.png
description: Minimal and free Kubernetes distribution with Terraform / Opentofu
license: MIT
open_source: true
based_on:
- Terraform / OpenTofu
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 35 (typhoon)
tags:
- automation
- infrastructure-as-code
- lightweight
production_ready: true
stars: 2000
- name: k3k
category: KubernetesInKubernetes
url: https://github.com/rancher/k3k
icon_url: https://avatars.githubusercontent.com/u/9343010?s=200&v=4
publisher: Rancher
description: Kubernetes-in-Kubernetes deployment using k3s for control plane isolation
license: Apache 2.0
open_source: true
based_on:
- k3s
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 47 (k3k)
- title: 'Kubernetes Rancher: The Basics and a Quick Tutorial'
language: en
url: https://komodor.com/learn/kubernetes-rancher-the-basics-and-a-quick-tutorial/
type: tutorial
- title: Installing Rancher on K3s with Ingress, Domain, and SSL Configuration
language: en
url: https://code2deploy.com/blog/installing-rancher-on-k3s-with-ingress-domain-and-ssl-configuration/
type: article
tags:
- multi-tenancy
- virtualization
stars: 550
- name: vcluster
category: KubernetesInKubernetes
url: https://github.com/loft-sh/vcluster
icon_url: https://avatars.githubusercontent.com/u/65466868?s=200&v=4
publisher: loft.sh
description: Virtual Kubernetes clusters that run inside regular namespaces
license: Apache 2.0
open_source: true
based_on:
- kubeadm
- k3s
- k0s
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 46 (vcluster)
- title: 'vCluster: The Complete Guide to Virtual Kubernetes Clusters'
language: en
url: https://collabnix.com/vcluster-the-complete-guide-to-virtual-kubernetes-clusters-in-2025/
type: tutorial
- title: Build On Weekly vcluster demo
language: en
url: https://hackmd.io/@KNFb-hAMT7-2CZWxFt822g/SJaRSHa0q
type: article
tags:
- multi-tenancy
- lightweight
stars: 10900
production_ready: true
- name: elemental (ex k3os)
category: KubernetesOS
url: https://github.com/rancher/elemental
icon_url: https://elemental.docs.rancher.com/img/logo.svg
publisher: Rancher
description: Immutable Linux OS for running Kubernetes with declarative fleet management
license: Apache 2.0
open_source: true
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 40 (elemental)
- title: K3OS - Le reboot de RancherOS à la sauce K3S
language: fr
url: https://blog.zwindler.fr/2020/12/08/k3os-le-reboot-de-rancheros-a-la-sauce-k3s/
type: article
- title: Elemental - How to download and setup
language: en
url: https://srclog.com/rancherelemental
type: article
tags:
- immutable
- production
- declarative
- name: Kairos Linux
category: KubernetesOS
url: https://github.com/kairos-io/kairos
icon_url: https://user-images.githubusercontent.com/2420543/193010398-72d4ba6e-7efe-4c2e-b7ba-d3a826a55b7d.png
publisher: Spectro cloud
description: Immutable Linux OS for edge and cloud with Kubernetes support
license: Apache 2.0
open_source: true
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 39 (Kairos Linux)
- title: Using Kairos to fully bootstrap a Kubernetes cluster with almost zero intervention
language: en
url: https://tyzbit.blog/using-kairos-to-fully-bootstrap-a-kubernetes-cluster-with-almost-zero-intervention
type: article
- title: Livin' Kubernetes on the (Immutable) Edge with Kairos Project
language: en
url: https://www.spectrocloud.com/blog/livin-kubernetes-on-the-immutable-edge-with-kairos-project
type: article
- title: 'Kairos: The immutable Linux meta-distribution for edge Kubernetes'
language: en
url: https://cloudification.io/cloud-blog/kairos-the-immutable-linux-meta-distribution-for-edge-kubernetes/
type: article
- title: Building secure Kubernetes Edge images with Kairos and k0s
language: en
url: https://www.cncf.io/blog/2025/03/25/building-secure-kubernetes-edge-images-with-kairos-and-k0s/
type: article
- title: Testing Kairos as an OS for K8s Cluster
language: en
url: https://medium.com/@vadimzharov/testing-kairos-as-an-os-for-k8s-cluster-050a4af53c3d
type: article
tags:
- immutable
- production
- edge
stars: 1600
production_ready: true
- name: RKE
category: KubernetesOS
url: https://github.com/rancher/rke
icon_url: https://rke.docs.rancher.com/img/logo-horizontal-rke.svg
icon_background_color: light
publisher: Rancher
description: CNCF-certified Kubernetes distribution that runs entirely within Docker
containers
license: Apache 2.0
open_source: true
abandoned: true
references:
- title: Kubernetes avec RancherOS et RKE - Partie 2
language: fr
url: https://blog.zwindler.fr/2020/11/30/kubernetes-avec-rancheros-et-rke-partie-2/
type: article
- title: Install Kubernetes with Rancher RKE (Step-by-Step)
language: en
url: https://computingforgeeks.com/install-kubernetes-production-cluster-using-rancher-rke/
type: tutorial
tags:
- immutable
- production
stars: 3300
- name: Talos Linux
category: KubernetesOS
url: https://github.com/siderolabs/talos
icon_url: https://raw.githubusercontent.com/zwindler/101-ways-to-deploy-kubernetes/refs/heads/main/public/logos/talos-logo.svg
publisher: SideroLabs
description: Secure, immutable, and minimal Linux OS designed for Kubernetes
license: MPL 2.0
open_source: true
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 38 (Talos Linux)
- title: Talos Linux
language: fr
url: https://une-tasse-de.cafe/blog/talos/
type: article
- title: Talos Linux
language: en
url: https://a-cup-of.coffee/blog/talos/
type: article
- title: Set Up Talos Linux on Your Machine
language: en
url: https://thenewstack.io/set-up-talos-linux-on-your-machine/
type: article
- title: Setting Up a k8s Cluster on Talos Linux
language: en
url: https://hostkey.com/blog/102-setting-up-a-k8s-cluster-on-talos-linux/
type: article
- title: Kubernetes Homelab Series Part 1 - Talos Linux & Proxmox
language: en
url: https://blog.dalydays.com/post/kubernetes-homelab-series-part-1-talos-linux-proxmox/
type: article
tags:
- immutable
- production
- lightweight
production_ready: true
stars: 9800
- name: AKS
category: Managed
url: https://azure.microsoft.com/fr-fr/products/kubernetes-service
icon_url: https://blog.aks.azure.com/img/logo.svg
publisher: Azure
description: Managed Kubernetes service on Microsoft Azure
license: Cloud
references:
- title: J'ai testé pour vous AKS, la plateforme Kubernetes managée d'Azure
language: fr
url: https://blog.zwindler.fr/2018/12/18/jai-teste-pour-vous-aks-la-plateforme-kubernetes-managee-dazure/
type: article
tags:
- cloud
- managed
production_ready: true
- name: Alibaba Cloud Container Service for Kubernetes (ACK)
category: Managed
url: https://www.alibabacloud.com/fr/product/kubernetes
icon_url: https://avatars.githubusercontent.com/u/16377432?s=200&v=4
publisher: Alibaba Cloud
description: Managed Kubernetes service on Alibaba Cloud
license: Cloud
tags:
- cloud
- managed
production_ready: true
- name: Civo
category: Managed
url: https://www.civo.com/
icon_url: https://www.civo.com/assets-rebrand/logos/civo-black.svg
publisher: Civo
description: Fast and simple managed Kubernetes cloud provider
license: Cloud
based_on:
- k3s
- Talos Linux
references:
- title: Kubernetes - 50 solutions pour les postes de développement et les clusters
de production
language: fr
url: https://www.eyrolles.com/Informatique/Livre/kubernetes-9782416022647/
type: book
description: Chapter 14 (Civo)
- title: Civo - Du Kubernetes managé à partir de 4€/mois, vraiment?
language: fr
url: https://blog.zwindler.fr/2021/07/16/civo-du-kubernetes-manage-a-partir-de-4-mois-vraiment/
type: article
tags:
- cloud
- managed
- beginner-friendly
production_ready: true
- name: Clever Kubernetes Engine (CKE)
category: Managed
url: https://www.clever-cloud.com/product/kubernetes/
icon_url: https://pbs.twimg.com/profile_images/1456256662684069900/ylfvBLEg_400x400.jpg
publisher: Clever Cloud
description: Managed Kubernetes service on Clever Cloud
license: Cloud
tags:
- cloud
- managed
- name: CoreWeave Kubernetes Service (CKS)
category: Managed
url: https://www.coreweave.com/products/coreweave-kubernetes-service
icon_url: https://raw.githubusercontent.com/zwindler/101-ways-to-deploy-kubernetes/refs/heads/main/public/logos/coreweave-logo.svg
icon_background_color: light
publisher: CoreWeave
description: GPU-accelerated managed Kubernetes service
license: Cloud
tags:
- cloud
- managed
production_ready: true
- name: DOKS
category: Managed
url: https://www.digitalocean.com/products/kubernetes/
icon_url: https://avatars.githubusercontent.com/u/4650108?s=200&v=4
publisher: Digital Ocean
description: Managed Kubernetes service on DigitalOcean
license: Cloud
references:
- title: 'Getting Started with Kubernetes on DigitalOcean: A Beginner''s Guide'
language: en
url: https://k8s-ops.net/posts/getting-started-with-kubernetes-digitalocean/
type: tutorial
tags:
- cloud