Skip to content

Commit 338d6df

Browse files
committed
improving readme
1 parent 50cb2a0 commit 338d6df

File tree

1 file changed

+39
-57
lines changed

1 file changed

+39
-57
lines changed

README.md

Lines changed: 39 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,65 @@
11
# The Kubernetes documentation
22

3-
[![Build Status](https://api.travis-ci.org/kubernetes/website.svg?branch=master)](https://travis-ci.org/kubernetes/website)
4-
[![GitHub release](https://img.shields.io/github/release/kubernetes/website.svg)](https://github.com/kubernetes/website/releases/latest)
3+
[![Netlify Status](https://api.netlify.com/api/v1/badges/be93b718-a6df-402a-b4a4-855ba186c97d/deploy-status)](https://app.netlify.com/sites/kubernetes-io-master-staging/deploys) [![GitHub release](https://img.shields.io/github/release/kubernetes/website.svg)](https://github.com/kubernetes/website/releases/latest)
54

6-
Welcome! This repository houses all of the assets required to build the [Kubernetes website and documentation](https://kubernetes.io/). We're glad that you want to contribute!
5+
This repository contains the assets required to build the [Kubernetes website and documentation](https://kubernetes.io/). We're glad that you want to contribute!
76

8-
## Contributing to the docs
9-
10-
You can click the **Fork** button in the upper-right area of the screen to create a copy of this repository in your GitHub account. This copy is called a *fork*. Make any changes you want in your fork, and when you are ready to send those changes to us, go to your fork and create a new pull request to let us know about it.
11-
12-
Once your pull request is created, a Kubernetes reviewer will take responsibility for providing clear, actionable feedback. As the owner of the pull request, **it is your responsibility to modify your pull request to address the feedback that has been provided to you by the Kubernetes reviewer.** Also, note that you may end up having more than one Kubernetes reviewer provide you feedback or you may end up getting feedback from a Kubernetes reviewer that is different than the one initially assigned to provide you feedback. Furthermore, in some cases, one of your reviewers might ask for a technical review from a [Kubernetes tech reviewer](https://github.com/kubernetes/website/wiki/Tech-reviewers) when needed. Reviewers will do their best to provide feedback in a timely fashion but response time can vary based on circumstances.
13-
14-
For more information about contributing to the Kubernetes documentation, see:
15-
16-
* [Start contributing](https://kubernetes.io/docs/contribute/start/)
17-
* [Staging Your Documentation Changes](http://kubernetes.io/docs/contribute/intermediate#view-your-changes-locally)
18-
* [Using Page Templates](http://kubernetes.io/docs/contribute/style/page-templates/)
19-
* [Documentation Style Guide](http://kubernetes.io/docs/contribute/style/style-guide/)
20-
* [Localizing Kubernetes Documentation](https://kubernetes.io/docs/contribute/localization/)
21-
22-
## Localization `README.md`'s
23-
| | |
24-
|---|---|
25-
|[French README](README-fr.md)|[Korean README](README-ko.md)|
26-
|[German README](README-de.md)|[Portuguese README](README-pt.md)|
27-
|[Hindi README](README-hi.md)|[Spanish README](README-es.md)|
28-
|[Indonesian README](README-id.md)|[Chinese README](README-zh.md)|
29-
|[Japanese README](README-ja.md)|[Vietnamese README](README-vi.md)|
30-
|[Russian README](README-ru.md)|[Italian README](README-it.md)|
31-
|[Polish README](README-pl.md)|[Ukrainian README](README-uk.md)|
32-
|||
33-
34-
## Running the website locally using Docker
35-
36-
The recommended way to run the Kubernetes website locally is to run a specialized [Docker](https://docker.com) image that includes the [Hugo](https://gohugo.io) static website generator.
37-
38-
> If you are running on Windows, you'll need a few more tools which you can install with [Chocolatey](https://chocolatey.org). `choco install make`
7+
## Running the website locally using Hugo
398

40-
> If you'd prefer to run the website locally without Docker, see [Running the website locally using Hugo](#running-the-website-locally-using-hugo) below.
9+
See the [official Hugo documentation](https://gohugo.io/getting-started/installing/) for Hugo installation instructions. Make sure to install the Hugo extended version specified by the `HUGO_VERSION` environment variable in the [`netlify.toml`](netlify.toml#L10) file.
4110

42-
If you have Docker [up and running](https://www.docker.com/get-started), build the `kubernetes-hugo` Docker image locally:
11+
To run the website locally when you have Hugo installed:
4312

4413
```bash
45-
make docker-image
14+
git clone https://github.com/kubernetes/website.git
15+
cd website
16+
hugo server --buildFuture
4617
```
4718

48-
Once the image has been built, you can run the website locally:
19+
This will start the local Hugo server on port 1313. Open up your browser to http://localhost:1313 to view the website. As you make changes to the source files, Hugo updates the website and forces a browser refresh.
4920

50-
```bash
51-
make docker-serve
52-
```
21+
## Get involved with SIG Docs
5322

54-
Open up your browser to http://localhost:1313 to view the website. As you make changes to the source files, Hugo updates the website and forces a browser refresh.
23+
Learn more about SIG Docs Kubernetes community and meetings on the [community page](https://github.com/kubernetes/community/tree/master/sig-docs#meetings).
5524

56-
## Running the website locally using Hugo
25+
You can also reach the maintainers of this project at:
5726

58-
See the [official Hugo documentation](https://gohugo.io/getting-started/installing/) for Hugo installation instructions. Make sure to install the Hugo extended version specified by the `HUGO_VERSION` environment variable in the [`netlify.toml`](netlify.toml#L9) file.
27+
- [Slack](https://kubernetes.slack.com/messages/sig-docs)
28+
- [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-docs)
5929

60-
To run the website locally when you have Hugo installed:
30+
## Contributing to the docs
6131

62-
```bash
63-
make serve
64-
```
32+
You can click the **Fork** button in the upper-right area of the screen to create a copy of this repository in your GitHub account. This copy is called a *fork*. Make any changes you want in your fork, and when you are ready to send those changes to us, go to your fork and create a new pull request to let us know about it.
6533

66-
This will start the local Hugo server on port 1313. Open up your browser to http://localhost:1313 to view the website. As you make changes to the source files, Hugo updates the website and forces a browser refresh.
34+
Once your pull request is created, a Kubernetes reviewer will take responsibility for providing clear, actionable feedback. As the owner of the pull request, **it is your responsibility to modify your pull request to address the feedback that has been provided to you by the Kubernetes reviewer.**
6735

68-
## Community, discussion, contribution, and support
36+
Also, note that you may end up having more than one Kubernetes reviewer provide you feedback or you may end up getting feedback from a Kubernetes reviewer that is different than the one initially assigned to provide you feedback.
6937

70-
Learn how to engage with the Kubernetes community on the [community page](http://kubernetes.io/community/).
38+
Furthermore, in some cases, one of your reviewers might ask for a technical review from a Kubernetes tech reviewer when needed. Reviewers will do their best to provide feedback in a timely fashion but response time can vary based on circumstances.
7139

72-
You can reach the maintainers of this project at:
40+
For more information about contributing to the Kubernetes documentation, see:
7341

74-
- [Slack](https://kubernetes.slack.com/messages/sig-docs)
75-
- [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-docs)
42+
* [Contribute to Kubernetes docs](https://kubernetes.io/docs/contribute/)
43+
* [Using Page Templates](https://kubernetes.io/docs/contribute/style/page-templates/)
44+
* [Documentation Style Guide](https://kubernetes.io/docs/contribute/style/style-guide/)
45+
* [Localizing Kubernetes Documentation](https://kubernetes.io/docs/contribute/localization/)
46+
47+
## Localization `README.md`'s
48+
49+
| Language | Language |
50+
|---|---|
51+
|[French](README-fr.md)|[Korean](README-ko.md)|
52+
|[German](README-de.md)|[Portuguese](README-pt.md)|
53+
|[Hindi](README-hi.md)|[Spanish](README-es.md)|
54+
|[Indonesian](README-id.md)|[Chinese](README-zh.md)|
55+
|[Japanese](README-ja.md)|[Vietnamese](README-vi.md)|
56+
|[Russian](README-ru.md)|[Italian](README-it.md)|
57+
|[Polish](README-pl.md)|[Ukrainian](README-uk.md)|
7658

77-
### Code of conduct
59+
## Code of conduct
7860

79-
Participation in the Kubernetes community is governed by the [Kubernetes Code of Conduct](code-of-conduct.md).
61+
Participation in the Kubernetes community is governed by the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md).
8062

8163
## Thank you!
8264

83-
Kubernetes thrives on community participation, and we appreciate your contributions to our website and our documentation!
65+
Kubernetes thrives on community participation, and we appreciate your contributions to our website and our documentation!

0 commit comments

Comments
 (0)