[Trivialfix]Fix typos

Fix the typos in kolla-kubernetes.

Change-Id: Id9d7e9734aafd4d114d8d919b65be57a96e1aa03
This commit is contained in:
shangxiaobj 2017-09-20 19:13:07 -07:00
parent 772038e7c5
commit abd213632a
3 changed files with 5 additions and 5 deletions

View File

@ -442,7 +442,7 @@ To test that helm is working you can run the following:
helm init --client-only
helm repo update
helm install stable/memcached --name helm-test
# check the deployment has succeded
# check the deployment has succeeded
helm ls
# and to check via kubectl
kubectl get all

View File

@ -64,7 +64,7 @@ cinder_volume_ceph_replicas: "1"
nova_consoleauth_replicas: "1"
nova_novncproxy_replicas: "1"
# !!!ALERT!!! Changing number of replicas for elasticsearch
# might cause issues and possible data corruption as currenly
# might cause issues and possible data corruption as currently
# Kubernetes does no support mutli-write access. It might
# change in future.
elasticsearch_replicas: "1"

View File

@ -14,7 +14,7 @@ work could be split by two tools that both specialize in their fields.
Problem description
===================
In order to do dependancy management in Kubernetes, it requires logic to be
In order to do dependency management in Kubernetes, it requires logic to be
added into containers, pods, and/or etcd, so that services will be cluster aware
during orchestration. In doing so it requires the developers to account for all
scenarios and corner cases when architecting the containers.
@ -22,7 +22,7 @@ scenarios and corner cases when architecting the containers.
Use Cases
=========
Ansible is capable of handling dependancy management and will be able to
Ansible is capable of handling dependency management and will be able to
orchestrate a cluster and hand it off to Kubernetes to be managed.
Ansible will be orchestrating the cluster by making CLI calls instead of using
@ -33,7 +33,7 @@ Arguments
=========
Ansible is an additional tool to add to the project. So there is an additional
dependancy here.
dependency here.
- Ansible wouldn't be adding any additional complexity. There would actually be
a net reduction in complexion because of the logic required to be built into
the containers in order to count for all use cases.