website/README.md

148 lines
7.0 KiB
Markdown
Raw Normal View History

2018-08-21 18:10:06 +00:00
# The Kubernetes documentation
2016-02-11 10:21:36 +00:00
2020-04-20 04:41:32 +00:00
[![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)
2020-04-20 04:41:32 +00:00
This repository contains the assets required to build the [Kubernetes website and documentation](https://kubernetes.io/). We're glad that you want to contribute!
<br>[Contributing to the docs](#contributing-to-the-docs)
<br>[Localization ReadMes](#localization-readmemds)
2016-02-11 10:21:36 +00:00
# Using this repository
You can run the website locally using Hugo (Extended version), or you can run it in a container runtime. We strongly recommend using the container runtime, as it gives deployment consistency with the live website.
## Prerequisites
To use this repository, you need the following installed locally:
2020-08-06 16:54:08 +00:00
- [npm](https://www.npmjs.com/)
- [Go](https://golang.org/)
- [Hugo (Extended version)](https://gohugo.io/)
- A container runtime, like [Docker](https://www.docker.com/).
Before you start, install the dependencies. Clone the repository and navigate to the directory:
```
2020-04-20 04:41:32 +00:00
git clone https://github.com/kubernetes/website.git
cd website
2020-06-30 20:08:32 +00:00
```
The Kubernetes website uses the [Docsy Hugo theme](https://github.com/google/docsy#readme). Even if you plan to run the website in a container, we strongly recommend pulling in the submodule and other development dependencies by running the following:
2020-06-30 20:08:32 +00:00
```
# pull in the Docsy submodule
2020-06-30 20:08:32 +00:00
git submodule update --init --recursive --depth 1
```
## Running the website using a container
To build the site in a container, run the following to build the container image and run it:
```
make container-image
make container-serve
```
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.
## Running the website locally using Hugo
Make sure to install the Hugo extended version specified by the `HUGO_VERSION` environment variable in the [`netlify.toml`](netlify.toml#L10) file.
2020-06-30 20:08:32 +00:00
To build and test the site locally, run:
```bash
2020-08-06 16:54:08 +00:00
# install dependencies
npm ci
make serve
```
2020-04-20 04:41:32 +00:00
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.
## Troubleshooting
### error: failed to transform resource: TOCSS: failed to transform "scss/main.scss" (text/x-scss): this feature is not available in your current Hugo version
Hugo is shipped in two set of binaries for technical reasons. The current website runs based on the **Hugo Extended** version only. In the [release page](https://github.com/gohugoio/hugo/releases) look for archives with `extended` in the name. To confirm, run `hugo version` and look for the word `extended`.
2020-08-22 08:01:37 +00:00
### Troubleshooting macOS for too many open files
2020-08-22 08:01:37 +00:00
If you run `make serve` on macOS and receive the following error:
```
ERROR 2020/08/01 19:09:18 Error: listen tcp 127.0.0.1:1313: socket: too many open files
make: *** [serve] Error 1
```
Try checking the current limit for open files:
`launchctl limit maxfiles`
Then run the following commands (adapted from https://gist.github.com/tombigel/d503800a282fcadbee14b537735d202c):
```shell
#!/bin/sh
# These are the original gist links, linking to my gists now.
# curl -O https://gist.githubusercontent.com/a2ikm/761c2ab02b7b3935679e55af5d81786a/raw/ab644cb92f216c019a2f032bbf25e258b01d87f9/limit.maxfiles.plist
# curl -O https://gist.githubusercontent.com/a2ikm/761c2ab02b7b3935679e55af5d81786a/raw/ab644cb92f216c019a2f032bbf25e258b01d87f9/limit.maxproc.plist
curl -O https://gist.githubusercontent.com/tombigel/d503800a282fcadbee14b537735d202c/raw/ed73cacf82906fdde59976a0c8248cce8b44f906/limit.maxfiles.plist
curl -O https://gist.githubusercontent.com/tombigel/d503800a282fcadbee14b537735d202c/raw/ed73cacf82906fdde59976a0c8248cce8b44f906/limit.maxproc.plist
sudo mv limit.maxfiles.plist /Library/LaunchDaemons
sudo mv limit.maxproc.plist /Library/LaunchDaemons
sudo chown root:wheel /Library/LaunchDaemons/limit.maxfiles.plist
sudo chown root:wheel /Library/LaunchDaemons/limit.maxproc.plist
sudo launchctl load -w /Library/LaunchDaemons/limit.maxfiles.plist
```
2020-08-22 08:01:37 +00:00
This works for Catalina as well as Mojave macOS.
# Get involved with SIG Docs
2020-04-20 04:41:32 +00:00
Learn more about SIG Docs Kubernetes community and meetings on the [community page](https://github.com/kubernetes/community/tree/master/sig-docs#meetings).
2020-04-20 04:41:32 +00:00
You can also reach the maintainers of this project at:
2020-06-28 11:42:18 +00:00
- [Slack](https://kubernetes.slack.com/messages/sig-docs) [Get an invite for this Slack](https://slack.k8s.io/)
2020-04-20 04:41:32 +00:00
- [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-docs)
# Contributing to the docs
2020-04-20 04:41:32 +00:00
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.
2020-04-20 04:41:32 +00:00
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.**
2020-04-20 04:41:32 +00:00
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.
2019-02-04 23:31:57 +00:00
2020-04-20 04:41:32 +00:00
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.
2019-02-04 23:31:57 +00:00
2020-04-20 04:41:32 +00:00
For more information about contributing to the Kubernetes documentation, see:
2019-02-04 23:31:57 +00:00
2020-04-20 04:41:32 +00:00
* [Contribute to Kubernetes docs](https://kubernetes.io/docs/contribute/)
2020-06-17 17:44:24 +00:00
* [Page Content Types](https://kubernetes.io/docs/contribute/style/page-content-types/)
2020-04-20 04:41:32 +00:00
* [Documentation Style Guide](https://kubernetes.io/docs/contribute/style/style-guide/)
* [Localizing Kubernetes Documentation](https://kubernetes.io/docs/contribute/localization/)
# Localization `README.md`'s
2020-04-20 04:41:32 +00:00
| Language | Language |
|---|---|
2020-05-01 09:25:31 +00:00
|[Chinese](README-zh.md)|[Korean](README-ko.md)|
|[French](README-fr.md)|[Polish](README-pl.md)|
2020-04-20 04:41:32 +00:00
|[German](README-de.md)|[Portuguese](README-pt.md)|
2020-05-01 09:25:31 +00:00
|[Hindi](README-hi.md)|[Russian](README-ru.md)|
|[Indonesian](README-id.md)|[Spanish](README-es.md)|
|[Italian](README-it.md)|[Ukrainian](README-uk.md)|
2020-04-20 04:41:32 +00:00
|[Japanese](README-ja.md)|[Vietnamese](README-vi.md)|
2019-02-04 23:31:57 +00:00
# Code of conduct
2019-02-04 23:31:57 +00:00
2020-04-20 04:41:32 +00:00
Participation in the Kubernetes community is governed by the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md).
2019-02-04 23:31:57 +00:00
# Thank you!
2016-02-11 10:21:36 +00:00
Kubernetes thrives on community participation, and we appreciate your contributions to our website and our documentation!