issue-#1 #5

Merged
jonny merged 18 commits from issue-#1 into master 2020-12-16 15:48:56 +00:00
Showing only changes of commit 665afb5183 - Show all commits

View File

@ -49,9 +49,8 @@ def get_deployments(namespace):
data = json.loads(output)
return data
def get_charts(tiller_ns, namespace):
command = "/usr/local/bin/helm --tiller-namespace " + tiller_ns + " list --output json" #helm2
#command = "/usr/local/bin/helm -n " + namespace + " list -ojson" #helm3
def get_charts(ns):
command = "/usr/local/bin/helm -n " + namespace + " list -ojson" #helm3
info(f"Running command: {command}")
try:
output = check_output(command.split(" "), stderr=STDOUT).decode("utf-8")