Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ concurrency:
cancel-in-progress: true

env:
VCLUSTER_VERSION: v0.26.0
VCLUSTER_VERSION: v0.27.0
VCLUSTER_SUFFIX: vcluster
VCLUSTER_NAME: vcluster
VCLUSTER_NAMESPACE: vcluster
VCLUSTER_BACKGROUND_PROXY_IMAGE: ghcr.io/loft-sh/vcluster-pro:0.26.0
VCLUSTER_BACKGROUND_PROXY_IMAGE: ghcr.io/loft-sh/vcluster-pro:0.27.0

jobs:
e2e-tests:
Expand Down
213 changes: 114 additions & 99 deletions go.mod

Large diffs are not rendered by default.

508 changes: 296 additions & 212 deletions go.sum

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion plugin/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
v2 "github.com/loft-sh/vcluster/pkg/plugin/v2"
"github.com/loft-sh/vcluster/pkg/scheme"
"github.com/loft-sh/vcluster/pkg/setup"
setupconfig "github.com/loft-sh/vcluster/pkg/setup/config"
"github.com/loft-sh/vcluster/pkg/syncer"
"github.com/loft-sh/vcluster/pkg/syncer/synccontext"
syncertypes "github.com/loft-sh/vcluster/pkg/syncer/types"
Expand Down Expand Up @@ -160,7 +161,7 @@ func (m *manager) InitWithOptions(options Options) (*synccontext.RegisterContext
virtualClusterConfig.Plugins = map[string]config2.Plugins{}

// init virtual cluster config
err = setup.InitAndValidateConfig(ctx, virtualClusterConfig)
err = setupconfig.InitAndValidateConfig(ctx, virtualClusterConfig)
if err != nil {
return nil, fmt.Errorf("init config: %w", err)
}
Expand Down
18 changes: 5 additions & 13 deletions vendor/github.com/Azure/go-ansiterm/osc_string_state.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions vendor/github.com/BurntSushi/toml/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions vendor/github.com/BurntSushi/toml/COPYING

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

120 changes: 120 additions & 0 deletions vendor/github.com/BurntSushi/toml/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading