diff --git a/routes/kube_helm_routes.py b/routes/kube_helm_routes.py index 2507592..a18efa9 100644 --- a/routes/kube_helm_routes.py +++ b/routes/kube_helm_routes.py @@ -17,7 +17,7 @@ def chartVersions(): chart = request.form['chart'] records = request.form['records'] ns = request.form['ns'] - chartVersions = get_chartdata(namespace, chart, records) + chartVersions = get_chartdata(ns, chart, records) table = chartVersionTable(chartVersions) table.border = True table.classes = ['table-striped', 'table-condensed', 'table-hover']