• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H15-Sep-2021-20499

CHANGELOG/H15-Sep-2021-2,3011,954

LICENSES/H15-Sep-2021-25,47320,871

api/H15-Sep-2021-91,16291,121

build/H15-Sep-2021-3,9482,297

cluster/H15-Sep-2021-39,92031,172

cmd/H15-Sep-2021-89,47965,950

docs/H15-Sep-2021-1916

hack/H15-Sep-2021-18,75912,684

logo/H03-May-2022-4734

pkg/H15-Sep-2021-771,815597,022

plugin/H15-Sep-2021-35,65229,141

staging/H15-Sep-2021-1,955,6091,652,535

test/H15-Sep-2021-280,512212,988

third_party/H15-Sep-2021-4,8813,821

vendor/H03-May-2022-2,910,0842,099,910

.generated_filesH A D15-Sep-2021766 2723

.gitattributesH A D15-Sep-2021381 119

.gitignoreH A D15-Sep-20212.6 KiB13498

CHANGELOG.mdH A D15-Sep-2021901 2422

CONTRIBUTING.mdH A D15-Sep-2021525 105

LICENSEH A D15-Sep-202111.1 KiB203169

MakefileH A D15-Sep-202115.8 KiB569276

Makefile.generated_filesH A D15-Sep-202130.2 KiB641324

OWNERSH A D15-Sep-2021783 3633

OWNERS_ALIASESH A D15-Sep-202110.4 KiB576525

README.mdH A D15-Sep-20213.3 KiB8763

SECURITY_CONTACTSH A D15-Sep-2021563 1816

SUPPORT.mdH A D15-Sep-20211.1 KiB2918

code-of-conduct.mdH A D15-Sep-2021148 42

go.modH A D15-Sep-202134.4 KiB535530

go.sumH A D15-Sep-202157.5 KiB614613

README.md

1# Kubernetes (K8s)
2
3[![GoPkg Widget]][GoPkg] [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/569/badge)](https://bestpractices.coreinfrastructure.org/projects/569)
4
5<img src="https://github.com/kubernetes/kubernetes/raw/master/logo/logo.png" width="100">
6
7----
8
9Kubernetes, also known as K8s, is an open source system for managing [containerized applications]
10across multiple hosts. It provides basic mechanisms for deployment, maintenance,
11and scaling of applications.
12
13Kubernetes builds upon a decade and a half of experience at Google running
14production workloads at scale using a system called [Borg],
15combined with best-of-breed ideas and practices from the community.
16
17Kubernetes is hosted by the Cloud Native Computing Foundation ([CNCF]).
18If your company wants to help shape the evolution of
19technologies that are container-packaged, dynamically scheduled,
20and microservices-oriented, consider joining the CNCF.
21For details about who's involved and how Kubernetes plays a role,
22read the CNCF [announcement].
23
24----
25
26## To start using K8s
27
28See our documentation on [kubernetes.io].
29
30Try our [interactive tutorial].
31
32Take a free course on [Scalable Microservices with Kubernetes].
33
34To use Kubernetes code as a library in other applications, see the [list of published components](https://git.k8s.io/kubernetes/staging/README.md).
35Use of the `k8s.io/kubernetes` module or `k8s.io/kubernetes/...` packages as libraries is not supported.
36
37## To start developing K8s
38
39The [community repository] hosts all information about
40building Kubernetes from source, how to contribute code
41and documentation, who to contact about what, etc.
42
43If you want to build Kubernetes right away there are two options:
44
45##### You have a working [Go environment].
46
47```
48mkdir -p $GOPATH/src/k8s.io
49cd $GOPATH/src/k8s.io
50git clone https://github.com/kubernetes/kubernetes
51cd kubernetes
52make
53```
54
55##### You have a working [Docker environment].
56
57```
58git clone https://github.com/kubernetes/kubernetes
59cd kubernetes
60make quick-release
61```
62
63For the full story, head over to the [developer's documentation].
64
65## Support
66
67If you need support, start with the [troubleshooting guide],
68and work your way through the process that we've outlined.
69
70That said, if you have questions, reach out to us
71[one way or another][communication].
72
73[announcement]: https://cncf.io/news/announcement/2015/07/new-cloud-native-computing-foundation-drive-alignment-among-container
74[Borg]: https://research.google.com/pubs/pub43438.html
75[CNCF]: https://www.cncf.io/about
76[communication]: https://git.k8s.io/community/communication
77[community repository]: https://git.k8s.io/community
78[containerized applications]: https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/
79[developer's documentation]: https://git.k8s.io/community/contributors/devel#readme
80[Docker environment]: https://docs.docker.com/engine
81[Go environment]: https://golang.org/doc/install
82[GoPkg]: https://pkg.go.dev/k8s.io/kubernetes
83[GoPkg Widget]: https://pkg.go.dev/badge/k8s.io/kubernetes.svg
84[interactive tutorial]: https://kubernetes.io/docs/tutorials/kubernetes-basics
85[kubernetes.io]: https://kubernetes.io
86[Scalable Microservices with Kubernetes]: https://www.udacity.com/course/scalable-microservices-with-kubernetes--ud615
87[troubleshooting guide]: https://kubernetes.io/docs/tasks/debug-application-cluster/troubleshooting/