2018-01-11 20:43:28 +00:00
|
|
|
|
---
|
|
|
|
|
title: Generating Reference Documentation for kubectl Commands
|
2018-05-05 16:00:51 +00:00
|
|
|
|
content_template: templates/task
|
2018-01-11 20:43:28 +00:00
|
|
|
|
---
|
|
|
|
|
|
2018-05-05 16:00:51 +00:00
|
|
|
|
{{% capture overview %}}
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
This page shows how to automatically generate reference pages for the
|
|
|
|
|
commands provided by the `kubectl` tool.
|
|
|
|
|
|
2018-05-05 16:00:51 +00:00
|
|
|
|
{{< note >}}
|
2018-01-11 20:43:28 +00:00
|
|
|
|
This topic shows how to generate reference documentation for
|
|
|
|
|
[kubectl commands](/docs/reference/generated/kubectl/kubectl-commands)
|
|
|
|
|
like
|
|
|
|
|
[kubectl apply](/docs/reference/generated/kubectl/kubectl-commands#apply) and
|
|
|
|
|
[kubectl taint](/docs/reference/generated/kubectl/kubectl-commands#taint).
|
|
|
|
|
This topic does not show how to generate the
|
|
|
|
|
[kubectl](/docs/reference/generated/kubectl/kubectl/)
|
|
|
|
|
options reference page. For instructions on how to generate the kubectl options
|
|
|
|
|
reference page, see
|
|
|
|
|
[Generating Reference Pages for Kubernetes Components and Tools](/docs/home/contribute/generated-reference/kubernetes-components/).
|
2018-05-05 16:00:51 +00:00
|
|
|
|
{{< /note >}}
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
2018-05-05 16:00:51 +00:00
|
|
|
|
{{% /capture %}}
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
|
2018-05-05 16:00:51 +00:00
|
|
|
|
{{% capture prerequisites %}}
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
* You need to have
|
|
|
|
|
[Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
|
|
|
|
|
installed.
|
|
|
|
|
|
|
|
|
|
* You need to have
|
2018-03-02 01:13:52 +00:00
|
|
|
|
[Golang](https://golang.org/doc/install) version 1.9.1 or later installed,
|
2018-01-11 20:43:28 +00:00
|
|
|
|
and your `$GOPATH` environment variable must be set.
|
|
|
|
|
|
|
|
|
|
* You need to have
|
|
|
|
|
[Docker](https://docs.docker.com/engine/installation/) installed.
|
|
|
|
|
|
|
|
|
|
* You need to know how to create a pull request to a GitHub repository.
|
|
|
|
|
Typically, this involves creating a fork of the repository. For more
|
|
|
|
|
information, see
|
|
|
|
|
[Creating a Documentation Pull Request](/docs/home/contribute/create-pull-request/) and
|
|
|
|
|
[GitHub Standard Fork & Pull Request Workflow](https://gist.github.com/Chaser324/ce0505fbed06b947d962).
|
|
|
|
|
|
2018-05-05 16:00:51 +00:00
|
|
|
|
{{% /capture %}}
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
|
2018-05-05 16:00:51 +00:00
|
|
|
|
{{% capture steps %}}
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
## Setting up the local repositories
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
Create a local workspace and set your `GOPATH`.
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
```shell
|
2019-07-06 11:54:35 +00:00
|
|
|
|
mkdir -p $HOME/<workspace>
|
|
|
|
|
|
|
|
|
|
export GOPATH=$HOME/<workspace>
|
2018-01-11 20:43:28 +00:00
|
|
|
|
```
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
Get a local clone of the following repositories:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
go get -u github.com/spf13/pflag
|
|
|
|
|
go get -u github.com/spf13/cobra
|
|
|
|
|
go get -u gopkg.in/yaml.v2
|
|
|
|
|
go get -u kubernetes-incubator/reference-docs
|
|
|
|
|
```
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
If you don't already have the kubernetes/website repository, get it now:
|
|
|
|
|
|
|
|
|
|
```shell
|
2019-07-06 11:54:35 +00:00
|
|
|
|
git clone https://github.com/<your-username>/website $GOPATH/src/github.com/<your-username>/website
|
2018-01-11 20:43:28 +00:00
|
|
|
|
```
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
Get a clone of the kubernetes/kubernetes repository as k8s.io/kubernetes:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
git clone https://github.com/kubernetes/kubernetes $GOPATH/src/k8s.io/kubernetes
|
|
|
|
|
```
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
Remove the spf13 package from `$GOPATH/src/k8s.io/kubernetes/vendor/github.com`.
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
```shell
|
2019-07-06 11:54:35 +00:00
|
|
|
|
rm -rf $GOPATH/src/k8s.io/kubernetes/vendor/github.com/spf13
|
2018-01-11 20:43:28 +00:00
|
|
|
|
```
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
The kubernetes/kubernetes repository provides access to the kubectl and kustomize source code.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Determine the base directory of your clone of the
|
|
|
|
|
[kubernetes/kubernetes](https://github.com/kubernetes/kubernetes) repository.
|
|
|
|
|
For example, if you followed the preceding step to get the repository, your
|
|
|
|
|
base directory is `$GOPATH/src/k8s.io/kubernetes.`
|
|
|
|
|
The remaining steps refer to your base directory as `<k8s-base>`.
|
|
|
|
|
|
|
|
|
|
* Determine the base directory of your clone of the
|
|
|
|
|
[kubernetes/website](https://github.com/kubernetes/website) repository.
|
|
|
|
|
For example, if you followed the preceding step to get the repository, your
|
|
|
|
|
base directory is `$GOPATH/src/github.com/<your-username>/website.`
|
|
|
|
|
The remaining steps refer to your base directory as `<web-base>`.
|
|
|
|
|
|
|
|
|
|
* Determine the base directory of your clone of the
|
2018-01-11 20:43:28 +00:00
|
|
|
|
[kubernetes-incubator/reference-docs](https://github.com/kubernetes-incubator/reference-docs) repository.
|
|
|
|
|
For example, if you followed the preceding step to get the repository, your
|
|
|
|
|
base directory is `$GOPATH/src/github.com/kubernetes-incubator/reference-docs.`
|
|
|
|
|
The remaining steps refer to your base directory as `<rdocs-base>`.
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
In your local k8s.io/kubernetes repository, check out the branch of interest,
|
2018-01-11 20:43:28 +00:00
|
|
|
|
and make sure it is up to date. For example, if you want to generate docs for
|
2019-07-06 11:54:35 +00:00
|
|
|
|
Kubernetes 1.15, you could use these commands:
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
cd <k8s-base>
|
2019-07-06 11:54:35 +00:00
|
|
|
|
git checkout release-1.15
|
|
|
|
|
git pull https://github.com/kubernetes/kubernetes release-1.15
|
2018-01-11 20:43:28 +00:00
|
|
|
|
```
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
If you do not need to edit the kubectl source code, follow the instructions to [Edit the Makefile](#editing-makefile).
|
|
|
|
|
|
2018-01-11 20:43:28 +00:00
|
|
|
|
## Editing the kubectl source code
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
The kubectl command reference documentation is automatically generated from
|
|
|
|
|
the kubectl source code. If you want to change the reference documentation, the first step
|
2018-01-11 20:43:28 +00:00
|
|
|
|
is to change one or more comments in the kubectl source code. Make the change in your
|
|
|
|
|
local kubernetes/kubernetes repository, and then submit a pull request to the master branch of
|
|
|
|
|
[github.com/kubernetes/kubernetes](https://github.com/kubernetes/kubernetes).
|
|
|
|
|
|
|
|
|
|
[PR 56673](https://github.com/kubernetes/kubernetes/pull/56673/files)
|
|
|
|
|
is an example of a pull request that fixes a typo in the kubectl source code.
|
|
|
|
|
|
|
|
|
|
Monitor your pull request, and respond to reviewer comments. Continue to monitor your
|
|
|
|
|
pull request until it is merged into the master branch of the kubernetes/kubernetes repository.
|
|
|
|
|
|
|
|
|
|
## Cherry picking your change into a release branch
|
|
|
|
|
|
|
|
|
|
Your change is now in the master branch, which is used for development of the next
|
|
|
|
|
Kubernetes release. If you want your change to appear in the docs for a Kubernetes
|
|
|
|
|
version that has already been released, you need to propose that your change be
|
|
|
|
|
cherry picked into the release branch.
|
|
|
|
|
|
|
|
|
|
For example, suppose the master branch is being used to develop Kubernetes 1.10,
|
2019-07-06 11:54:35 +00:00
|
|
|
|
and you want to backport your change to the release-1.15 branch. For instructions
|
2018-01-11 20:43:28 +00:00
|
|
|
|
on how to do this, see
|
2019-05-16 11:51:43 +00:00
|
|
|
|
[Propose a Cherry Pick](https://git.k8s.io/community/contributors/devel/sig-release/cherry-picks.md).
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
Monitor your cherry-pick pull request until it is merged into the release branch.
|
|
|
|
|
|
2018-05-05 16:00:51 +00:00
|
|
|
|
{{< note >}}
|
2018-01-11 20:43:28 +00:00
|
|
|
|
Proposing a cherry pick requires that you have permission to set a label and a
|
|
|
|
|
milestone in your pull request. If you don’t have those permissions, you will
|
|
|
|
|
need to work with someone who can set the label and milestone for you.
|
2018-05-05 16:00:51 +00:00
|
|
|
|
{{< /note >}}
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
## Editing Makefile
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
Go to `<rdocs-base>`, and open the `Makefile` for editing:
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
* Set `K8SROOT` to `<k8s-base>`.
|
|
|
|
|
* Set `WEBROOT` to `<web-base>`.
|
|
|
|
|
* Set `MINOR_VERSION` to the minor version of the docs you want to build. For example,
|
|
|
|
|
if you want to build docs for Kubernetes 1.15, set `MINOR_VERSION` to 15. Save and close the `Makefile`.
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
For example, update the following variables:
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
```
|
2019-07-06 11:54:35 +00:00
|
|
|
|
WEBROOT=$(GOPATH)/src/github.com/<your-username>/website
|
|
|
|
|
K8SROOT=$(GOPATH)/src/k8s.io/kubernetes
|
|
|
|
|
MINOR_VERSION=15
|
2018-01-11 20:43:28 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Creating a version directory
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
The version directory is a staging area for the kubectl command reference build.
|
|
|
|
|
The YAML files in this directory are used to create the structure and navigation
|
|
|
|
|
of the kubectl command reference.
|
|
|
|
|
|
|
|
|
|
In the `<rdocs-base>/gen-kubectldocs/generators` directory, if you do not already
|
|
|
|
|
have a directory named `v1_<MINOR_VERSION>`, create one now by copying the directory
|
2018-01-11 20:43:28 +00:00
|
|
|
|
for the previous version. For example, suppose you want to generate docs for
|
2019-07-06 11:54:35 +00:00
|
|
|
|
Kubernetes 1.15, but you don't already have a `v1_15` directory. Then you could
|
|
|
|
|
create and populate a `v1_15` directory by running these commands:
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
```shell
|
2019-07-06 11:54:35 +00:00
|
|
|
|
mkdir gen-kubectldocs/generators/v1_15
|
|
|
|
|
cp -r gen-kubectldocs/generators/v1_14/* gen-kubectldocs/generators/v1_15
|
2018-01-11 20:43:28 +00:00
|
|
|
|
```
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
## Checking out a branch in k8s.io/kubernetes
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
In your local <k8s-base> repository, checkout the branch that has
|
2018-01-11 20:43:28 +00:00
|
|
|
|
the version of Kubernetes that you want to document. For example, if you want
|
2019-07-06 11:54:35 +00:00
|
|
|
|
to generate docs for Kubernetes 1.15, checkout the release-1.15 branch. Make sure
|
2018-01-11 20:43:28 +00:00
|
|
|
|
you local branch is up to date.
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
```shell
|
|
|
|
|
cd <k8s-base>
|
|
|
|
|
git checkout release-1.15
|
|
|
|
|
git pull https://github.com/kubernetes/kubernetes release-1.15
|
|
|
|
|
```
|
|
|
|
|
|
2018-01-11 20:43:28 +00:00
|
|
|
|
## Running the doc generation code
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
In your local kubernetes-incubator/reference-docs repository, build and run the
|
|
|
|
|
kubectl command reference generation code. You might need to run the command as root:
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
cd <rdocs-base>
|
2019-07-06 11:54:35 +00:00
|
|
|
|
make copycli
|
2018-01-11 20:43:28 +00:00
|
|
|
|
```
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
The `copycli` command will clean the staging directories, generate the kubectl command files,
|
|
|
|
|
and copy the collated kubectl reference HTML page and assets to `<web-base>`.
|
|
|
|
|
|
2018-01-11 20:43:28 +00:00
|
|
|
|
## Locate the generated files
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
Verify that these two files have been generated:
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
```shell
|
|
|
|
|
[ -e "<rdocs-base>/gen-kubectldocs/generators/build/index.html" ] && echo "index.html built" || echo "no index.html"
|
|
|
|
|
[ -e "<rdocs-base>/gen-kubectldocs/generators/build/navData.js" ] && echo "navData.js built" || echo "no navData.js"
|
|
|
|
|
```
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
## Locate the copied files
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
Verify that all generated files have been copied to your `<web-base>`:
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
```shell
|
2019-07-06 11:54:35 +00:00
|
|
|
|
cd <web-base>
|
|
|
|
|
git status
|
2018-01-11 20:43:28 +00:00
|
|
|
|
```
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
The output should include the modified files:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
static/docs/reference/generated/kubectl/kubectl-commands.html
|
|
|
|
|
static/docs/reference/generated/kubectl/navData.js
|
|
|
|
|
```
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
Additionally, the output might show the modified files:
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
```
|
2019-07-06 11:54:35 +00:00
|
|
|
|
static/docs/reference/generated/kubectl/scroll.js
|
|
|
|
|
static/docs/reference/generated/kubectl/stylesheet.css
|
|
|
|
|
static/docs/reference/generated/kubectl/tabvisibility.js
|
|
|
|
|
static/docs/reference/generated/kubectl/node_modules/bootstrap/dist/css/bootstrap.min.css
|
|
|
|
|
static/docs/reference/generated/kubectl/node_modules/highlight.js/styles/default.css
|
|
|
|
|
static/docs/reference/generated/kubectl/node_modules/jquery.scrollto/jquery.scrollTo.min.js
|
|
|
|
|
static/docs/reference/generated/kubectl/node_modules/jquery/dist/jquery.min.js
|
|
|
|
|
static/docs/reference/generated/kubectl/node_modules/font-awesome/css/font-awesome.min.css
|
2018-01-11 20:43:28 +00:00
|
|
|
|
```
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
## Locally test the documentation
|
|
|
|
|
|
|
|
|
|
Build the Kubernetes documentation in your local `<web-base>`.
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
```shell
|
2019-07-06 11:54:35 +00:00
|
|
|
|
cd <web-base>
|
|
|
|
|
make docker-serve
|
2018-01-11 20:43:28 +00:00
|
|
|
|
```
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
View the [local preview](https://localhost:1313/docs/reference/generated/kubectl/kubectl-commands/).
|
|
|
|
|
|
|
|
|
|
## Adding and committing changes in kubernetes/website
|
|
|
|
|
|
2018-01-11 20:43:28 +00:00
|
|
|
|
Run `git add` and `git commit` to commit the files.
|
|
|
|
|
|
|
|
|
|
## Creating a pull request
|
|
|
|
|
|
|
|
|
|
Create a pull request to the `kubernetes/website` repository. Monitor your
|
|
|
|
|
pull request, and respond to review comments as needed. Continue to monitor
|
|
|
|
|
your pull request until it is merged.
|
|
|
|
|
|
|
|
|
|
A few minutes after your pull request is merged, your updated reference
|
|
|
|
|
topics will be visible in the
|
|
|
|
|
[published documentation](/docs/home).
|
|
|
|
|
|
|
|
|
|
|
2018-05-05 16:00:51 +00:00
|
|
|
|
{{% /capture %}}
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
2018-05-05 16:00:51 +00:00
|
|
|
|
{{% capture whatsnext %}}
|
2018-01-11 20:43:28 +00:00
|
|
|
|
|
|
|
|
|
* [Generating Reference Documentation for Kubernetes Components and Tools](/docs/home/contribute/generated-reference/kubernetes-components/)
|
|
|
|
|
* [Generating Reference Documentation for the Kubernetes API](/docs/home/contribute/generated-reference/kubernetes-api/)
|
|
|
|
|
* [Generating Reference Documentation for the Kubernetes Federation API](/docs/home/contribute/generated-reference/federation-api/)
|
|
|
|
|
|
2019-07-06 11:54:35 +00:00
|
|
|
|
{{% /capture %}}
|