From eef9fef1141c6295b824b884ad86d645cd1c094f Mon Sep 17 00:00:00 2001 From: shreyagupta30 Date: Mon, 27 Sep 2021 14:35:36 +0530 Subject: Automated deployment of helm charts with python This patch adds demo helm charts and a python script that automatically deploys any helm chart of user's choice and print all the useful information about the chart. Signed-off-by: Shreya Gupta Change-Id: I06e3a8012602e09f601f70def386ef267c870e94 --- tools/k8s/app-deployment/helm/pyscript/Pipfile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tools/k8s/app-deployment/helm/pyscript/Pipfile (limited to 'tools/k8s/app-deployment/helm/pyscript/Pipfile') diff --git a/tools/k8s/app-deployment/helm/pyscript/Pipfile b/tools/k8s/app-deployment/helm/pyscript/Pipfile new file mode 100644 index 00000000..dd60181c --- /dev/null +++ b/tools/k8s/app-deployment/helm/pyscript/Pipfile @@ -0,0 +1,18 @@ +[[source]] +url = "https://pypi.org/simple" +verify_ssl = true +name = "pypi" + +[packages] +kubernetes = "*" +pyyaml = "*" +pick = "*" +simplejson = "*" +nested-lookup = "*" +rich = "*" +pylint = "*" + +[dev-packages] + +[requires] +python_version = "3.9" -- cgit 1.2.3-korg