Fix duplicated words issue like "are are out of"
This is to fix the duplicated words issue like "Other services that are are out of scope of this". Change-Id: Ie4882dbb64d6e8774888b97895af20ba3855f0f8
This commit is contained in:
parent
0449c4fc8e
commit
1b90ed1c47
@ -500,7 +500,7 @@ class DockerWorker(object):
|
|||||||
current_dimensions = container_info['HostConfig']
|
current_dimensions = container_info['HostConfig']
|
||||||
for key1, key2 in dimension_map.items():
|
for key1, key2 in dimension_map.items():
|
||||||
# NOTE(mgoddard): If a resource has been explicitly requested,
|
# NOTE(mgoddard): If a resource has been explicitly requested,
|
||||||
# check for a match. Otherwise, ensure is is set to the default.
|
# check for a match. Otherwise, ensure it is set to the default.
|
||||||
if key1 in new_dimensions:
|
if key1 in new_dimensions:
|
||||||
if key1 == 'ulimits':
|
if key1 == 'ulimits':
|
||||||
if self.compare_ulimits(new_dimensions[key1],
|
if self.compare_ulimits(new_dimensions[key1],
|
||||||
|
@ -98,5 +98,5 @@ put the content in ``/etc/kolla/config/qinling/qinling-engine.conf``.
|
|||||||
cert_file = /etc/qinling/pki/kubernetes/qinling.crt
|
cert_file = /etc/qinling/pki/kubernetes/qinling.crt
|
||||||
key_file = /etc/qinling/pki/kubernetes/qinling.key
|
key_file = /etc/qinling/pki/kubernetes/qinling.key
|
||||||
|
|
||||||
``kube_host`` is the the Kubernetes cluster API address, ``https`` protocol
|
``kube_host`` is the Kubernetes cluster API address, ``https`` protocol
|
||||||
has to be defined.
|
has to be defined.
|
||||||
|
@ -22,7 +22,7 @@ https://blueprints.launchpad.net/kolla-ansible/+spec/add-ssl-internal-network
|
|||||||
This proposal describes implementation of the internal TLS encryption for
|
This proposal describes implementation of the internal TLS encryption for
|
||||||
OpenStack services deployed with kolla-ansible, i.e. adding support to make
|
OpenStack services deployed with kolla-ansible, i.e. adding support to make
|
||||||
OpenStack internal and admin endpoints encrypted, as well as encrypting traffic
|
OpenStack internal and admin endpoints encrypted, as well as encrypting traffic
|
||||||
between HAProxy and OpenStack services. Other services that are are out of scope of this
|
between HAProxy and OpenStack services. Other services are out of scope of this
|
||||||
document. Also, more workflows (using company CA, using certificates already
|
document. Also, more workflows (using company CA, using certificates already
|
||||||
provisioned on the hosts) are out of the scope, and shall be discussed separately.
|
provisioned on the hosts) are out of the scope, and shall be discussed separately.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user