Skip to content

Commit cb9cad5

Browse files
author
zhangxiaoyu-zidif
committed
update website
1 parent 47a377a commit cb9cad5

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ Before submitting a pull request to create new content, please review the [Kuber
2626

2727
Kubernetes.io uses github issues to track documentation issues and requests. If you see a documentation issue, submit an issue using the following steps:
2828

29-
1. Check the [kubernetes.io issues list](https://github.com/kubernetes/kubernetes.github.io/issues) as you might find out the issue is a duplicate.
30-
2. Use the [included template for every new issue](https://github.com/kubernetes/kubernetes.github.io/issues/new). When you create a bug report, include as many details as possible and include suggested fixes to the issue.
29+
1. Check the [kubernetes.io issues list](https://github.com/kubernetes/website/issues) as you might find out the issue is a duplicate.
30+
2. Use the [included template for every new issue](https://github.com/kubernetes/website/issues/new). When you create a bug report, include as many details as possible and include suggested fixes to the issue.
3131

3232
Note that code issues should be filed against the main kubernetes repository, while documentation issues should go in the kubernetes.io repository.
3333

cn/docs/getting-started-guides/centos/centos_manual_config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title: CentOS
99

1010
## 警告
1111

12-
本文档适用于Kubernetes 1.1.0,目前已经被[废弃](https://github.com/kubernetes/kubernetes.github.io/issues/1613)。相关内容请参阅最新版[指南](/docs/getting-started-guides/kubeadm/)
12+
本文档适用于Kubernetes 1.1.0,目前已经被[废弃](https://github.com/kubernetes/website/issues/1613)。相关内容请参阅最新版[指南](/docs/getting-started-guides/kubeadm/)
1313

1414
## 前提条件
1515

docs/concepts/cluster-administration/manage-deployment.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title: Managing Resources
99
You've deployed your application and exposed it via a service. Now what? Kubernetes provides a number of tools to help you manage your application deployment, including scaling and updating. Among the features that we will discuss in more depth are [configuration files](/docs/concepts/configuration/overview/) and [labels](/docs/concepts/overview/working-with-objects/labels/).
1010

1111
You can find all the files for this example [in our docs
12-
repo here](https://github.com/kubernetes/kubernetes.github.io/tree/{{page.docsbranch}}/docs/user-guide/).
12+
repo here](https://github.com/kubernetes/website/tree/{{page.docsbranch}}/docs/user-guide/).
1313

1414
* TOC
1515
{:toc}

docs/concepts/configuration/assign-pod-node.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ that a pod ends up on a machine with an SSD attached to it, or to co-locate pods
1616
services that communicate a lot into the same availability zone.
1717

1818
You can find all the files for these examples [in our docs
19-
repo here](https://github.com/kubernetes/kubernetes.github.io/tree/{{page.docsbranch}}/docs/user-guide/node-selection).
19+
repo here](https://github.com/kubernetes/website/tree/{{page.docsbranch}}/docs/user-guide/node-selection).
2020

2121
* TOC
2222
{:toc}

docs/concepts/workloads/controllers/deployment.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The `template` field contains the following instructions:
5858
To create this Deployment, run the following command:
5959

6060
```shell
61-
kubectl create -f https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/master/docs/concepts/workloads/controllers/nginx-deployment.yaml
61+
kubectl create -f https://raw.githubusercontent.com/kubernetes/website/master/docs/concepts/workloads/controllers/nginx-deployment.yaml
6262
```
6363

6464
Note: You can append `--record` to this command to record the current command in the annotations of

docs/getting-started-guides/centos/centos_manual_config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: CentOS
77
* TOC
88
{:toc}
99

10-
**Caution:** This guide was originally written for Kubernetes 1.1.0 and [is deprecated](https://github.com/kubernetes/kubernetes.github.io/issues/1613) and is replaced by [kubeadm](/docs/admin/kubeadm/).
10+
**Caution:** This guide was originally written for Kubernetes 1.1.0 and [is deprecated](https://github.com/kubernetes/website/issues/1613) and is replaced by [kubeadm](/docs/admin/kubeadm/).
1111
{: .caution}
1212

1313
## Prerequisites

docs/home/contribute/create-pull-request.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Creating a Documentation Pull Request
55
{% capture overview %}
66

77
To contribute to the Kubernetes documentation, create a pull request against the
8-
[kubernetes/kubernetes.github.io](https://github.com/kubernetes/kubernetes.github.io){: target="_blank"}
8+
[kubernetes/website](https://github.com/kubernetes/website){: target="_blank"}
99
repository. This page shows how to create a pull request.
1010

1111
{% endcapture %}
@@ -26,7 +26,7 @@ Documentation will be published under the [CC BY SA 4.0](https://git.k8s.io/kube
2626
## Creating a fork of the Kubernetes documentation repository
2727

2828
1. Go to the
29-
[kubernetes/kubernetes.github.io](https://github.com/kubernetes/kubernetes.github.io){: target="_blank"}
29+
[kubernetes/website](https://github.com/kubernetes/website){: target="_blank"}
3030
repository.
3131

3232
1. In the upper-right corner, click **Fork**. This creates a copy of the
@@ -51,7 +51,7 @@ create a pull request against the master branch of the Kubernetes
5151
documentation repository.
5252

5353
1. In your GitHub account, in your new branch, create a pull request
54-
against the master branch of the kubernetes/kubernetes.github.io
54+
against the master branch of the kubernetes/website
5555
repository. This opens a page that shows the status of your pull request.
5656

5757
1. Click **Show all checks**. Wait for the **deploy/netlify** check to complete.
@@ -70,7 +70,7 @@ of the Kubernetes documentation repository. The <vnext> branch has the
7070
form `release-<version-number>`, for example release-1.5.
7171

7272
1. In your GitHub account, in your new branch, create a pull request
73-
against the &lt;vnext&gt; branch of the kubernetes/kubernetes.github.io
73+
against the &lt;vnext&gt; branch of the kubernetes/website
7474
repository. This opens a page that shows the status of your pull request.
7575

7676
1. Click **Show all checks**. Wait for the **deploy/netlify** check to complete.

docs/home/contribute/page-templates.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ title: Using Page Templates
1313
<li><a href="#concept_template">Concept</a></li>
1414
</ul>
1515

16-
<p>The page templates are in the <a href="https://git.k8s.io/kubernetes.github.io/_includes/templates" target="_blank">_includes/templates</a> directory of the <a href="https://github.com/kubernetes/kubernetes.github.io">kubernetes.github.io</a> repository.
16+
<p>The page templates are in the <a href="https://git.k8s.io/kubernetes.github.io/_includes/templates" target="_blank">_includes/templates</a> directory of the <a href="https://github.com/kubernetes/website">kubernetes.github.io</a> repository.
1717

1818
<h2 id="task_template">Task template</h2>
1919

docs/home/contribute/review-issues.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Reviewing Documentation Issues
44

55
{% capture overview %}
66

7-
This page explains how documentation issues are reviewed and prioritized for the [kubernetes/kubernetes.github.io](https://github.com/kubernetes/kubernetes.github.io){: target="_blank"} repository. The purpose is to provide a way to organize issues and make it easier to contribute to Kubernetes documentation. The following should be used as the standard way of prioritizing, labeling, and interacting with issues.
7+
This page explains how documentation issues are reviewed and prioritized for the [kubernetes/website](https://github.com/kubernetes/website){: target="_blank"} repository. The purpose is to provide a way to organize issues and make it easier to contribute to Kubernetes documentation. The following should be used as the standard way of prioritizing, labeling, and interacting with issues.
88
{% endcapture %}
99

1010
{% capture body %}

docs/home/contribute/stage-documentation-changes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ branch, your changes are staged in a custom subdomain on Netlify so that
2121
you can see your changes in rendered form before the pull request is merged.
2222

2323
1. In your GitHub account, in your new branch, submit a pull request to the
24-
kubernetes/kubernetes.github.io repository. This opens a page that shows the
24+
kubernetes/website repository. This opens a page that shows the
2525
status of your pull request.
2626

2727
1. Scroll down to the list of automated checks. Click **Show all checks**.

editdocs.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ $( document ).ready(function() {
1212
$("#generalInstructions").hide();
1313
$("#continueEdit").show();
1414
$("#continueEditButton").text("Edit " + forwarding);
15-
$("#continueEditButton").attr("href", "https://github.com/kubernetes/kubernetes.github.io/edit/{{ page.docsbranch }}/" + forwarding)
15+
$("#continueEditButton").attr("href", "https://github.com/kubernetes/website/edit/{{ page.docsbranch }}/" + forwarding)
1616
$("#viewOnGithubButton").text("View " + forwarding + " on GitHub");
17-
$("#viewOnGithubButton").attr("href", "https://git.k8s.io/kubernetes.github.io/" + forwarding)
17+
$("#viewOnGithubButton").attr("href", "https://git.k8s.io/website/" + forwarding)
1818
} else {
1919
$("#generalInstructions").show();
2020
$("#continueEdit").hide();
@@ -44,7 +44,7 @@ $( document ).ready(function() {
4444

4545
<p>Click the button below to visit the repo for our site. You can then click the <b>Fork</b> button in the upper-right area of the screen to create a copy of our site in your GitHub account called a <i>fork</i>. Make any changes you want in your fork, and when you are ready to send those changes to us, go to the index page for your fork and click <b>New Pull Request</b> to let us know about it.</p>
4646

47-
<p><a class="button" href="https://github.com/kubernetes/kubernetes.github.io/">Browse this site's source code</a></p>
47+
<p><a class="button" href="https://github.com/kubernetes/website/">Browse this site's source code</a></p>
4848

4949
</div>
5050
<!-- END: Dynamic section -->

0 commit comments

Comments
 (0)