Skip to content

Commit

Permalink
allow non default kubeconfig (#182)
Browse files Browse the repository at this point in the history
* allo non default kubeconfig
* issue link
  • Loading branch information
yuval-k authored and soloio-bulldozer[bot] committed Apr 24, 2019
1 parent 5b1d3d5 commit c59f479
Show file tree
Hide file tree
Showing 5 changed files with 325 additions and 1,311 deletions.
4 changes: 4 additions & 0 deletions changelog/v0.5.10/kubeconfig.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
changelog:
- type: NEW_FEATURE
description: Allow using a custom kubeconfig
issueLink: https://github.com/solo-io/squash/issues/182
3 changes: 2 additions & 1 deletion ci/internal/extconfig/dev.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"fmt"
"io"
"net/http"
"strings"

"github.com/solo-io/go-utils/contextutils"
)
Expand All @@ -17,7 +18,7 @@ func MustCreateDevResources(ctx context.Context, version string) {
Win32: MustDownloadSha(ctx, version, osShaIdWin32),
}
squashSpec := SquashSpec{
Version: version,
Version: strings.TrimPrefix(version, "v"),
BaseName: extensionBaseName,
Binaries: bins,
}
Expand Down
Loading

0 comments on commit c59f479

Please sign in to comment.