Skip to content

Commit cf5d62b

Browse files
authored
Merge branch 'master' into front-proxy
2 parents 2614032 + 6746e91 commit cf5d62b

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

_data/reference.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ toc:
219219
- title: Replication Controller
220220
path: /docs/user-guide/replication-controller/
221221
- title: Resource Quotas
222-
path: /docs/admin/resource-quota/
222+
path: /docs/admin/resourcequota/
223223
- title: Scheduled Jobs
224224
path: /docs/user-guide/scheduled-jobs/
225225
- title: Secrets
@@ -269,6 +269,6 @@ toc:
269269
- title: Federation Components
270270
section:
271271
- title: federation-apiserver
272-
path: /docs/admin/federation-apiserver.md
272+
path: /docs/admin/federation-apiserver
273273
- title : federation-controller-mananger
274-
path: /docs/admin/federation-controller-manager.md
274+
path: /docs/admin/federation-controller-manager

docs/admin/addons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Add-ons in each section are sorted alphabetically - the ordering does not imply
1515
* [Canal](https://github.com/tigera/canal/tree/master/k8s-install/kubeadm) unites Flannel and Calico, providing networking and network policy.
1616
* [Flannel](https://github.com/coreos/flannel/blob/master/Documentation/kube-flannel.yml) is a overlay network provider that can be used with Kubernetes.
1717
* [Romana](http://romana.io) is a Layer 3 networking solution for pod networks that also supports the [NetworkPolicy API](/docs/user-guide/networkpolicies/). Kubeadm add-on installation details available [here](https://github.com/romana/romana/tree/master/containerize).
18-
* [Weave Net](https://github.com/weaveworks/weave-kube) provides networking and network policy, will carry on working on both sides of a network partition, and does not require an external database.
18+
* [Weave Net](https://www.weave.works/docs/net/latest/kube-addon/) provides networking and network policy, will carry on working on both sides of a network partition, and does not require an external database.
1919

2020
## Visualization & Control
2121

docs/user-guide/ingress.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -53,18 +53,18 @@ Make sure you review the [beta limitations](https://github.com/kubernetes/contri
5353
A minimal Ingress might look like:
5454

5555
```yaml
56-
01. apiVersion: extensions/v1beta1
57-
02. kind: Ingress
58-
03. metadata:
59-
04. name: test-ingress
60-
05. spec:
61-
06. rules:
62-
07. - http:
63-
08. paths:
64-
09. - path: /testpath
65-
10. backend:
66-
11. serviceName: test
67-
12. servicePort: 80
56+
apiVersion: extensions/v1beta1
57+
kind: Ingress
58+
metadata:
59+
name: test-ingress
60+
spec:
61+
rules:
62+
- http:
63+
paths:
64+
- path: /testpath
65+
backend:
66+
serviceName: test
67+
servicePort: 80
6868
```
6969
7070
*POSTing this to the API server will have no effect if you have not configured an [Ingress controller](#ingress-controllers).*

docs/user-guide/production-pods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ The specification of a pre-stop hook is similar to that of probes, but without t
220220

221221
## Termination message
222222

223-
In order to achieve a reasonably high level of availability, especially for actively developed applications, it's important to debug failures quickly. Kubernetes can speed debugging by surfacing causes of fatal errors in a way that can be display using [`kubectl`](/docs/user-guide/kubectl/kubectl) or the [UI](/docs/user-guide/ui), in addition to general [log collection](/docs/user-guide/logging). It is possible to specify a `terminationMessagePath` where a container will write its 'death rattle'?, such as assertion failure messages, stack traces, exceptions, and so on. The default path is `/dev/termination-log`.
223+
In order to achieve a reasonably high level of availability, especially for actively developed applications, it's important to debug failures quickly. Kubernetes can speed debugging by surfacing causes of fatal errors in a way that can be display using [`kubectl`](/docs/user-guide/kubectl/) or the [UI](/docs/user-guide/ui), in addition to general [log collection](/docs/user-guide/logging). It is possible to specify a `terminationMessagePath` where a container will write its 'death rattle'?, such as assertion failure messages, stack traces, exceptions, and so on. The default path is `/dev/termination-log`.
224224

225225
Here is a toy example:
226226

0 commit comments

Comments
 (0)