From dee529dc66e37f3090fc59cf552bb91fba6f9aa1 Mon Sep 17 00:00:00 2001 From: Andrey Klychkov Date: Thu, 12 Sep 2019 16:45:34 +0300 Subject: [PATCH] fix typos in clustering modules (#62196) --- lib/ansible/modules/clustering/consul_acl.py | 4 ++-- lib/ansible/modules/clustering/consul_kv.py | 2 +- lib/ansible/modules/clustering/k8s/k8s_info.py | 2 +- lib/ansible/modules/clustering/k8s/k8s_scale.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/ansible/modules/clustering/consul_acl.py b/lib/ansible/modules/clustering/consul_acl.py index 6c0c52e279d..dc48347b77a 100644 --- a/lib/ansible/modules/clustering/consul_acl.py +++ b/lib/ansible/modules/clustering/consul_acl.py @@ -44,7 +44,7 @@ options: required: false token: description: - - the token key indentifying an ACL rule set. If generated by consul + - the token key identifying an ACL rule set. If generated by consul this will be a UUID required: false rules: @@ -604,7 +604,7 @@ def get_consul_client(configuration): def check_dependencies(): """ Checks that the required dependencies have been imported. - :exception ImportError: if it is detected that any of the required dependencies have not been iported + :exception ImportError: if it is detected that any of the required dependencies have not been imported """ if not python_consul_installed: raise ImportError("python-consul required for this module. " diff --git a/lib/ansible/modules/clustering/consul_kv.py b/lib/ansible/modules/clustering/consul_kv.py index ff89d3c7af8..352b4850105 100644 --- a/lib/ansible/modules/clustering/consul_kv.py +++ b/lib/ansible/modules/clustering/consul_kv.py @@ -75,7 +75,7 @@ options: type: str token: description: - - The token key indentifying an ACL rule set that controls access to + - The token key identifying an ACL rule set that controls access to the key value pair type: str cas: diff --git a/lib/ansible/modules/clustering/k8s/k8s_info.py b/lib/ansible/modules/clustering/k8s/k8s_info.py index ff9e96169d7..99a8fd8cecb 100644 --- a/lib/ansible/modules/clustering/k8s/k8s_info.py +++ b/lib/ansible/modules/clustering/k8s/k8s_info.py @@ -51,7 +51,7 @@ options: namespace: description: - Use to specify an object namespace. Use in conjunction with I(api_version), I(kind), and I(name) - to identify a specfic object. + to identify a specific object. label_selectors: description: List of label selectors to use to filter results field_selectors: diff --git a/lib/ansible/modules/clustering/k8s/k8s_scale.py b/lib/ansible/modules/clustering/k8s/k8s_scale.py index f438aaa0e4c..2afb0f959fa 100644 --- a/lib/ansible/modules/clustering/k8s/k8s_scale.py +++ b/lib/ansible/modules/clustering/k8s/k8s_scale.py @@ -26,7 +26,7 @@ author: - "Fabian von Feilitzsch (@fabianvf)" description: - - Similar to the kubectl scale command. Use to set the number of replicas for a Deployment, ReplicatSet, + - Similar to the kubectl scale command. Use to set the number of replicas for a Deployment, ReplicaSet, or Replication Controller, or the parallelism attribute of a Job. Supports check mode. extends_documentation_fragment: