Skip to content

Commit ca4b022

Browse files
authored
Merge branch 'master' into master
2 parents 0bdc0a7 + f2ad6b1 commit ca4b022

26 files changed

+438
-243
lines changed

docs/admin/authentication.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ or be treated as an anonymous user.
3535
## Authentication strategies
3636

3737
Kubernetes uses client certificates, bearer tokens, an authenticating proxy, or HTTP basic auth to
38-
authenticate API requests through authentication plugins. As HTTP request are
39-
made to the API server plugins attempts to associate the following attributes
38+
authenticate API requests through authentication plugins. As HTTP requests are
39+
made to the API server, plugins attempt to associate the following attributes
4040
with the request:
4141

4242
* Username: a string which identifies the end user. Common values might be `kube-admin` or `[email protected]`.
@@ -420,7 +420,7 @@ enterprise directory, kerberos, etc.)
420420
### Creating Certificates
421421

422422
When using client certificate authentication, you can generate certificates
423-
using an existing deployment script or manually through `easyrsa` or `openssl.``
423+
using an existing deployment script or manually through `easyrsa` or `openssl.`
424424

425425
#### Using an Existing Deployment Script
426426

docs/admin/node.md

Lines changed: 109 additions & 101 deletions
Large diffs are not rendered by default.

docs/admin/rescheduler.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ killed for this purpose.
4343

4444
Rescheduler doesn't have any user facing configuration (component config) or API.
4545
It's enabled by default. It can be disabled:
46+
4647
* during cluster setup by setting `ENABLE_RESCHEDULER` flag to `false`
4748
* on running cluster by deleting its manifest from master node
4849
(default path `/etc/kubernetes/manifests/rescheduler.manifest`)
@@ -51,6 +52,7 @@ It's enabled by default. It can be disabled:
5152

5253
To be critical an add-on has to run in `kube-system` namespace (cofigurable via flag)
5354
and have the following annotations specified:
55+
5456
* `scheduler.alpha.kubernetes.io/critical-pod` set to empty string
5557
* `scheduler.alpha.kubernetes.io/tolerations` set to `[{"key":"CriticalAddonsOnly", "operator":"Exists"}]`
5658

docs/getting-started-guides/minikube.md

Lines changed: 255 additions & 85 deletions
Large diffs are not rendered by default.

docs/hellonode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ We can now build and publish a new container image to the registry with an incre
340340

341341
```shell
342342
docker build -t gcr.io/$PROJECT_ID/hello-node:v2 .
343-
gcloud docker push gcr.io/$PROJECT_ID/hello-node:v2
343+
gcloud docker -- push gcr.io/$PROJECT_ID/hello-node:v2
344344
```
345345

346346
Building and pushing this updated image should be much quicker as we take full advantage of the Docker cache.

docs/tasks/access-application-cluster/port-forward-access-application-cluster.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ for database debugging.
2525

2626
1. Create a pod:
2727

28-
export REPO=https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/master
29-
kubectl create -f $REPO/docs/tasks/access-application-cluster/redis-master.yaml
28+
kubectl create -f http://k8s.io/docs/tasks/access-application-cluster/redis-master.yaml
3029

3130
The output of a successful command verifies that the pod was created:
3231

docs/tasks/administer-cluster/assign-pods-nodes.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ a `disktype=ssd` label.
5959
1. Use the configuration file to create a pod that will get scheduled on your
6060
chosen node:
6161

62-
export REPO=https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/master
63-
kubectl create -f $REPO/docs/tasks/administer-cluster/pod.yaml
62+
kubectl create -f http://k8s.io/docs/tasks/administer-cluster/pod.yaml
6463

6564
1. Verify that the pod is running on your chosen node:
6665

docs/tasks/configure-pod-container/assign-cpu-ram-container.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ for the `Pod`:
4343

4444
1. Create a Pod based on the YAML configuration file:
4545

46-
export REPO=https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/master
47-
kubectl create -f $REPO/docs/tasks/configure-pod-container/cpu-ram.yaml
46+
kubectl create -f http://k8s.io/docs/tasks/configure-pod-container/cpu-ram.yaml
4847

4948
1. Display information about the pod:
5049

docs/tasks/configure-pod-container/define-command-argument-container.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ file for the Pod defines a command and two arguments:
3939

4040
1. Create a Pod based on the YAML configuration file:
4141

42-
export REPO=https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/master
43-
kubectl create -f $REPO/docs/tasks/configure-pod-container/commands.yaml
42+
kubectl create -f http://k8s.io/docs/tasks/configure-pod-container/commands.yaml
4443

4544
1. List the running Pods:
4645

docs/tasks/configure-pod-container/define-environment-variable-container.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ Pod:
3333

3434
1. Create a Pod based on the YAML configuration file:
3535

36-
export REPO=https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/master
37-
kubectl create -f $REPO/docs/tasks/configure-pod-container/envars.yaml
36+
kubectl create -f http://k8s.io/docs/tasks/configure-pod-container/envars.yaml
3837

3938
1. List the running Pods:
4039

0 commit comments

Comments
 (0)