Transfer TODOs into GH issues

This commit is contained in:
Andrei Pohilko
2022-10-28 19:10:53 +01:00
parent 2e8ba39b8f
commit 7ab0f33201
3 changed files with 3 additions and 4 deletions

View File

@@ -23,8 +23,6 @@ func (h *HelmHandler) GetCharts(c *gin.Context) {
c.IndentedJSON(http.StatusOK, res)
}
// TODO: helm show chart komodorio/k8s-watcher to get the icon URL
func (h *HelmHandler) Uninstall(c *gin.Context) {
qp, err := utils.GetQueryProps(c, false)
if err != nil {

View File

@@ -111,9 +111,11 @@
<span class="rounded rounded-1 me-2 p-1 px-2 bg-tag text-dark">URL: <span class="url fw-bold">http://somerepo/somepath</span></span>
</div>
<!-- TODO
<div class="float-end">
<!-- TODO <input class="form-control form-control-sm" type="text" placeholder="Filter..."> -->
<input class="form-control form-control-sm" type="text" placeholder="Filter...">
</div>
-->
<div class="row bg-secondary rounded px-3 py-2 mb-3 fw-bold small"
style="text-transform: uppercase">
<div class="col-3">Chart Name</div>

View File

@@ -58,7 +58,6 @@ func (d *DataLayer) runCommandHelm(cmd ...string) (string, error) {
}
func (d *DataLayer) runCommandKubectl(cmd ...string) (string, error) {
// TODO: migrate into using kubectl "k8s.io/kubectl/pkg/cmd" and kube API
if d.Kubectl == "" {
d.Kubectl = "kubectl"
}