From 6c1dc79c7ff59364e6019bcd217e77196d6d397b Mon Sep 17 00:00:00 2001 From: Mike Graves Date: Thu, 18 Feb 2021 08:01:49 -0500 Subject: [PATCH] Fix doc string (#67) * Fix doc string The sanity tests fail due to missing default values on a few options in the doc string. This change puts the doc string in alignment with the argument spec. * Fix case --- plugins/modules/k8s.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/modules/k8s.py b/plugins/modules/k8s.py index 6d46d97..a3553cf 100644 --- a/plugins/modules/k8s.py +++ b/plugins/modules/k8s.py @@ -134,6 +134,7 @@ options: will only work if the same object is passed with state=absent (alternatively, just use state=absent with the name including the generated hash and append_hash=no) type: bool + default: false apply: description: - C(apply) compares the desired resource definition with the previously supplied resource definition, @@ -141,6 +142,7 @@ options: - C(apply) works better with Services than 'force=yes' - mutually exclusive with C(merge_type) type: bool + default: false requirements: - "python >= 2.7"