File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ jobs:
24
24
- name : Download release check-chart
25
25
uses : dsaltares/fetch-gh-release-asset@master
26
26
with :
27
- file : check-chart_0.0.1_linux_amd64 .tar.gz
27
+ file : check-chart_0.0.3_linux_amd64 .tar.gz
28
28
repo : beclab/check-chart
29
29
target : check-chart.tar.gz
30
- version : tags/v0.0.1
30
+ version : tags/v0.0.3
31
31
- name : get latest tag
32
32
uses : " WyriHaximus/github-action-get-previous-tag@v1"
33
33
id : get-latest-tag
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ package server
3
3
import (
4
4
"errors"
5
5
"fmt"
6
+ "github.com/go-resty/resty/v2"
6
7
"net/http"
7
8
"os"
8
9
"path/filepath"
@@ -16,7 +17,6 @@ import (
16
17
"github.com/beclab/devbox/pkg/store/db/model"
17
18
18
19
"github.com/emicklei/go-restful/v3"
19
- "github.com/go-resty/resty/v2"
20
20
"github.com/gofiber/fiber/v2"
21
21
"github.com/google/uuid"
22
22
"gopkg.in/yaml.v2"
@@ -395,6 +395,7 @@ func (h *handlers) listAppContainersInChart(ctx *fiber.Ctx) error {
395
395
"password" : "password" ,
396
396
}
397
397
values ["svcs" ] = map [string ]interface {}{}
398
+ values ["cluster" ] = map [string ]interface {}{}
398
399
399
400
path := getAppPath (app )
400
401
appCfgPath := filepath .Join (path , constants .AppCfgFileName )
You can’t perform that action at this time.
0 commit comments