You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-93Lines changed: 10 additions & 93 deletions
Original file line number
Diff line number
Diff line change
@@ -16,88 +16,39 @@
16
16
Kubernetes is an open source system for managing [containerized applications](http://kubernetes.io/docs/whatisk8s/) across multiple hosts,
17
17
providing basic mechanisms for deployment, maintenance, and scaling of applications. Kubernetes is hosted by the Cloud Native Computing Foundation ([CNCF](https://www.cncf.io))
18
18
19
-
Kubernetes is:
20
-
21
-
***lean**: lightweight, simple, accessible
22
-
***portable**: public, private, hybrid, multi cloud
Kubernetes builds upon a decade and a half of experience at Google running production workloads at scale using a system called [Borg](https://research.google.com/pubs/pub43438.html), combined with best-of-breed ideas and practices from the community.
27
20
28
21
<hr>
29
22
30
-
### Kubernetes is ready for Production !
31
-
32
-
Since the Kubernetes 1.0 release in July 2015 Kubernetes is ready for your production workloads. Check the [case studies](http://kubernetes.io/case-studies/).
33
-
34
-
### Kubernetes can run anywhere !
35
-
36
-
You can run Kubernetes on your local workstation, cloud providers (e.g. GCE, AWS, Azure), on-premises virtual machines and physical hardware. Essentially, anywhere Linux runs you can run Kubernetes. Checkout the [deployment solutions](http://kubernetes.io/docs/getting-started-guides/) for details.
37
-
38
-
<hr>
39
-
40
23
### Are you ...
41
24
42
-
* Interested in learning more about using Kubernetes? Please see our user-facing documentation on [kubernetes.io](http://kubernetes.io). Try our [interactive tutorial](http://kubernetes.io/docs/tutorials/kubernetes-basics/) or take a free course on [Scalable Microservices with Kubernetes](https://www.udacity.com/course/scalable-microservices-with-kubernetes--ud615).
43
-
* Interested in hacking on the core Kubernetes code base, developing tools using the Kubernetes API or helping in anyway possible ? Keep reading!
25
+
* Interested in learning more about using Kubernetes?
26
+
- See see our documentation on [kubernetes.io](http://kubernetes.io)
- Take a free course on [Scalable Microservices with Kubernetes](https://www.udacity.com/course/scalable-microservices-with-kubernetes--ud615).
29
+
* Interested in developing the core Kubernetes code base, developing tools using the Kubernetes API or helping in anyway possible ? Keep reading!
44
30
45
31
## Code of Conduct
46
32
47
33
The Kubernetes community abides by the CNCF [code of conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md). Here is an excerpt:
48
34
49
35
_As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities._
50
36
51
-
## Concepts Overview
52
-
53
-
Kubernetes works with the following concepts:
54
-
55
-
[**Cluster**](http://kubernetes.io/docs/admin/)
56
-
: A cluster is a set of physical or virtual machines and other infrastructure resources used by Kubernetes to run your applications.
57
-
58
-
[**Node**](http://kubernetes.io/docs/admin/node/)
59
-
: A node is a physical or virtual machine running Kubernetes, onto which pods can be scheduled.
: Pods are a colocated group of application containers with shared volumes. They're the smallest deployable units that can be created, scheduled, and managed with Kubernetes. Pods can be created individually, but it's recommended that you use a replication controller even if creating a single pod.
: Labels are used to organize and select groups of objects based on key:value pairs.
74
-
75
37
## Community
76
38
77
-
Do you want to help " shape the evolution of technologies that are container packaged, dynamically scheduled and microservices oriented? ". If you are a company, you should consider joining the [CNCF](https://cncf.io/about). For details about who's involved and how Kubernetes plays a role, read [the announcement](https://cncf.io/news/announcement/2015/07/new-cloud-native-computing-foundation-drive-alignment-among-container).
Do you want to help "shape the evolution of technologies that are container-packaged, dynamically-scheduled and microservices-oriented? ". If you are a company, you should consider joining the [CNCF](https://cncf.io/about). For details about who's involved in CNCF and how Kubernetes plays a role, read [the announcement](https://cncf.io/news/announcement/2015/07/new-cloud-native-computing-foundation-drive-alignment-among-container). For general information about our community see the website [community](http://kubernetes.io/community/) page.
84
40
85
-
Ask questions and help answer them on:
41
+
Join us on social media ([Twitter](https://twitter.com/kubernetesio), [Google+](https://plus.google.com/u/0/b/116512812300813784482/116512812300813784482)) and read our [blog](http://blog.kubernetes.io/)
Join a Special Interest Group ([SIG](https://github.com/kubernetes/community))
97
48
98
49
## Contribute
99
50
100
-
If you're interested in being a contributor and want to get involved in developing Kubernetes, get started with this light reading:
51
+
If you're interested in being a contributor and want to get involved in developing Kubernetes, get started with with this reading:
101
52
102
53
* The community [expectations](docs/devel/community-expectations.md)
103
54
* The [contributor guidelines](CONTRIBUTING.md)
@@ -107,40 +58,6 @@ You will then most certainly gain a lot from joining a [SIG](https://github.com/
107
58
108
59
If you have an idea for a new feature, see the [Kubernetes Features](https://github.com/kubernetes/features) repository for a list of features that are coming in new releases as well as details on how to propose one.
109
60
110
-
## Documentation
111
-
112
-
The Kubernetes [documentation](http://kubernetes.io/docs/) is organized into several categories.
113
-
114
-
-**Getting started guides**
115
-
- For people who want to create a Kubernetes cluster
116
-
- See [Creating a Kubernetes Cluster](http://kubernetes.github.io/docs/getting-started-guides/)
117
-
- For people who want to port Kubernetes to a new environment
118
-
- See [Getting Started from Scratch](http://kubernetes.github.io/docs/getting-started-guides/scratch/)
119
-
-**User documentation**
120
-
- For people who want to run programs on an existing Kubernetes cluster
121
-
- See the [Kubernetes User Guide: Managing Applications](http://kubernetes.github.io/docs/user-guide/)
122
-
-**Administrator documentation**
123
-
- For people who want to administer a Kubernetes cluster
124
-
- See the [Kubernetes Cluster Admin Guide](http://kubernetes.io/docs/admin/)
125
-
-**Developer and API documentation**
126
-
- For people who want to write programs that access the Kubernetes [API](docs/api.md), write plugins
127
-
or extensions, or modify the core Kubernetes code
128
-
- See the [Kubernetes Developer Guide](docs/devel/README.md)
129
-
-**Walkthroughs and examples**
130
-
- For Hands-on introduction and example config files
131
-
- See the [user guide](http://kubernetes.github.io/docs/user-guide/)
132
-
- See the [examples](examples/) directory
133
-
-**Contributions from the Kubernetes community**
134
-
- See the [contrib](contrib/) repository
135
-
- See the [incubator](https://github.com/kubernetes-incubator) organisation
136
-
-**Design documentation and design proposals**
137
-
- For people who want to understand the design of Kubernetes, and feature proposals
138
-
- See the design docs in the [Kubernetes Design Overview](docs/design/README.md) and the [design](docs/design/) directory
139
-
- See the proposals in the [proposals](docs/proposals/) directory
140
-
-**Wiki/FAQ**
141
-
- For general developer information see the [wiki](https://github.com/kubernetes/kubernetes/wiki)
142
-
- For user and admin frequently asked questions, see the [troubleshooting guide](http://kubernetes.io/docs/troubleshooting/)
143
-
144
61
## Support
145
62
146
63
While there are many different channels that you can use to get hold of us ([Slack](http://slack.k8s.io/), [Stack Overflow](http://stackoverflow.com/questions/tagged/kubernetes), [Issues](https://github.com/kubernetes/kubernetes/issues/new), [Forums/Mailing lists](https://groups.google.com/forum/#!forum/kubernetes-users)), you can help make sure that we are efficient in getting you the help that you need.
0 commit comments