Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add kustomize library #12

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module github.com/kubermatic/utils

go 1.14

replace k8s.io/client-go => k8s.io/client-go v0.18.5
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why is this needed? And it worked previously.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think kustomize somehow depends on client-go? because now code cannot be compiled due to some issues of k8s.io/client-go v11.0.0+incompatible, and in KubeCarrier we also override the version of client-go to make it properly.


require (
github.com/Masterminds/goutils v1.1.0 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
Expand All @@ -13,13 +15,16 @@ require (
github.com/mitchellh/copystructure v1.0.0 // indirect
github.com/spf13/cobra v1.0.0
github.com/stretchr/testify v1.4.0
github.com/thetechnick/statik v0.1.8
go.uber.org/zap v1.10.0
golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975
golang.org/x/mod v0.3.0
k8s.io/api v0.18.5
k8s.io/apiextensions-apiserver v0.18.5
k8s.io/apimachinery v0.18.5
k8s.io/cli-runtime v0.18.5
k8s.io/client-go v0.18.5
k8s.io/client-go v11.0.0+incompatible
sigs.k8s.io/controller-runtime v0.6.0
sigs.k8s.io/kustomize/v3 v3.3.1
sigs.k8s.io/yaml v1.2.0
)
Loading