Merge pull request #9319 from skonzem/fix_doc_typos
Fix misspellings in documentation
This commit is contained in:
commit
057f9733d6
|
@ -146,7 +146,7 @@ ENV C_FORCE_ROOT 1
|
||||||
CMD ["/bin/bash", "/usr/local/bin/run.sh"]
|
CMD ["/bin/bash", "/usr/local/bin/run.sh"]
|
||||||
```
|
```
|
||||||
|
|
||||||
The celery\_conf.py contains the defintion of a simple Celery task that adds two numbers. This last line starts the Celery worker.
|
The celery\_conf.py contains the definition of a simple Celery task that adds two numbers. This last line starts the Celery worker.
|
||||||
|
|
||||||
**NOTE:** `ENV C_FORCE_ROOT 1` forces Celery to be run as the root user, which is *not* recommended in production!
|
**NOTE:** `ENV C_FORCE_ROOT 1` forces Celery to be run as the root user, which is *not* recommended in production!
|
||||||
|
|
||||||
|
|
|
@ -513,7 +513,7 @@ When you go to localhost:8000, you might not see the page at all. Testing it wi
|
||||||
```shell
|
```shell
|
||||||
==> default: curl: (56) Recv failure: Connection reset by peer
|
==> default: curl: (56) Recv failure: Connection reset by peer
|
||||||
```
|
```
|
||||||
This means the web frontend isn't up yet. Specifically, the "reset by peer" message is occuring because you are trying to access the *right port*, but *nothing is bound* to that port yet. Wait a while, possibly about 2 minutes or more, depending on your set up. Also, run a *watch* on docker ps, to see if containers are cycling on and off or not starting.
|
This means the web frontend isn't up yet. Specifically, the "reset by peer" message is occurring because you are trying to access the *right port*, but *nothing is bound* to that port yet. Wait a while, possibly about 2 minutes or more, depending on your set up. Also, run a *watch* on docker ps, to see if containers are cycling on and off or not starting.
|
||||||
|
|
||||||
```watch
|
```watch
|
||||||
$> watch -n 1 docker ps
|
$> watch -n 1 docker ps
|
||||||
|
|
|
@ -14,7 +14,7 @@ If you are new to kubernetes, and you haven't run guestbook yet,
|
||||||
|
|
||||||
you might want to stop here and go back and run guestbook app first.
|
you might want to stop here and go back and run guestbook app first.
|
||||||
|
|
||||||
The guestbook tutorial will teach you alot about the basics of kubernetes, and we've tried not to be redundant here.
|
The guestbook tutorial will teach you a lot about the basics of kubernetes, and we've tried not to be redundant here.
|
||||||
|
|
||||||
## Architecture of this SOA
|
## Architecture of this SOA
|
||||||
|
|
||||||
|
|
|
@ -69,9 +69,9 @@ your cluster. Edit [`meteor-controller.json`](meteor-controller.json) and make s
|
||||||
points to the container you just pushed to the Docker Hub or GCR.
|
points to the container you just pushed to the Docker Hub or GCR.
|
||||||
|
|
||||||
As you may know, Meteor uses MongoDB, and we'll need to provide it a
|
As you may know, Meteor uses MongoDB, and we'll need to provide it a
|
||||||
persistant Kuberetes volume to store its data. See the [volumes
|
persistent Kuberetes volume to store its data. See the [volumes
|
||||||
documentation](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/volumes.md)
|
documentation](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/volumes.md)
|
||||||
for options. We're going to use Google Compute Engine persistant
|
for options. We're going to use Google Compute Engine persistent
|
||||||
disks. Create the MongoDB disk by running:
|
disks. Create the MongoDB disk by running:
|
||||||
```
|
```
|
||||||
gcloud compute disks create --size=200GB mongo-disk
|
gcloud compute disks create --size=200GB mongo-disk
|
||||||
|
@ -140,7 +140,7 @@ documentation](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/doc
|
||||||
for more information.
|
for more information.
|
||||||
|
|
||||||
As mentioned above, the mongo container uses a volume which is mapped
|
As mentioned above, the mongo container uses a volume which is mapped
|
||||||
to a persistant disk by Kubernetes. In [`mongo-pod.json`](mongo-pod.json) the container
|
to a persistent disk by Kubernetes. In [`mongo-pod.json`](mongo-pod.json) the container
|
||||||
section specifies the volume:
|
section specifies the volume:
|
||||||
```
|
```
|
||||||
"volumeMounts": [
|
"volumeMounts": [
|
||||||
|
|
|
@ -80,7 +80,7 @@ rethinkdb-rc-1.16.0-manu6
|
||||||
Admin
|
Admin
|
||||||
-----
|
-----
|
||||||
|
|
||||||
You need a separate pod (which labled as role:admin) to access Web Admin UI
|
You need a separate pod (labeled as role:admin) to access Web Admin UI
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
kubectl create -f admin-pod.yaml
|
kubectl create -f admin-pod.yaml
|
||||||
|
|
Loading…
Reference in New Issue