From aad3ec7ad59dd89313ae6ad0281b1d5398556244 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Thu, 14 May 2020 09:39:17 -0500 Subject: [PATCH] Add version_added to docs for each of the new collection modules. --- plugins/modules/helm.py | 2 ++ plugins/modules/helm_info.py | 2 ++ plugins/modules/helm_repository.py | 2 ++ plugins/modules/k8s_exec.py | 2 ++ plugins/modules/k8s_log.py | 2 ++ 5 files changed, 10 insertions(+) diff --git a/plugins/modules/helm.py b/plugins/modules/helm.py index 0af2b2ea..379f5141 100644 --- a/plugins/modules/helm.py +++ b/plugins/modules/helm.py @@ -13,6 +13,8 @@ module: helm short_description: Manages Kubernetes packages with the Helm package manager +version_added: "0.11.0" + author: - Lucas Boisserie (@LucasBoisserie) - Matthieu Diehr (@d-matt) diff --git a/plugins/modules/helm_info.py b/plugins/modules/helm_info.py index 382623e3..cccbf250 100644 --- a/plugins/modules/helm_info.py +++ b/plugins/modules/helm_info.py @@ -13,6 +13,8 @@ module: helm_info short_description: Get informations from Helm package deployed inside the cluster +version_added: "0.11.0" + author: - Lucas Boisserie (@LucasBoisserie) diff --git a/plugins/modules/helm_repository.py b/plugins/modules/helm_repository.py index 95560933..e097b133 100644 --- a/plugins/modules/helm_repository.py +++ b/plugins/modules/helm_repository.py @@ -13,6 +13,8 @@ module: helm_repository short_description: Add and remove Helm repository +version_added: "0.11.0" + author: - Lucas Boisserie (@LucasBoisserie) diff --git a/plugins/modules/k8s_exec.py b/plugins/modules/k8s_exec.py index 65ceb79d..fe710e9c 100644 --- a/plugins/modules/k8s_exec.py +++ b/plugins/modules/k8s_exec.py @@ -15,6 +15,8 @@ module: k8s_exec short_description: Execute command in Pod +version_added: "0.10.0" + author: "Tristan de Cacqueray (@tristanC)" description: diff --git a/plugins/modules/k8s_log.py b/plugins/modules/k8s_log.py index 3a5b38dd..6f8d5b46 100644 --- a/plugins/modules/k8s_log.py +++ b/plugins/modules/k8s_log.py @@ -14,6 +14,8 @@ module: k8s_log short_description: Fetch logs from Kubernetes resources +version_added: "0.10.0" + author: - "Fabian von Feilitzsch (@fabianvf)"