-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update k8s and operator-sdk version to v0.10.0
- Loading branch information
draveness
committed
Aug 16, 2019
1 parent
ac4b299
commit 576c3fc
Showing
7 changed files
with
702 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,3 +78,4 @@ tags | |
vendor/ | ||
|
||
.DS_Store | ||
.envrc |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
module github.com/draveness/proxier | ||
|
||
go 1.12 | ||
|
||
require ( | ||
cloud.google.com/go v0.37.4 // indirect | ||
github.com/beorn7/perks v1.0.0 // indirect | ||
github.com/go-openapi/spec v0.19.0 | ||
github.com/gobuffalo/envy v1.7.0 // indirect | ||
github.com/gregjones/httpcache v0.0.0-20190212212710-3befbb6ad0cc // indirect | ||
github.com/operator-framework/operator-sdk v0.10.0 | ||
github.com/petar/GoLLRB v0.0.0-20130427215148-53be0d36a84c // indirect | ||
github.com/pkg/errors v0.8.1 | ||
github.com/prometheus/common v0.3.0 // indirect | ||
github.com/prometheus/procfs v0.0.0-20190416084830-8368d24ba045 // indirect | ||
github.com/spf13/pflag v1.0.3 | ||
github.com/stretchr/testify v1.3.0 | ||
golang.org/x/crypto v0.0.0-20190411191339-88737f569e3a // indirect | ||
golang.org/x/net v0.0.0-20190415214537-1da14a5a36f2 // indirect | ||
golang.org/x/sync v0.0.0-20190412183630-56d357773e84 | ||
golang.org/x/sys v0.0.0-20190416152802-12500544f89f // indirect | ||
golang.org/x/tools v0.0.0-20190417005754-4ca4b55e2050 // indirect | ||
k8s.io/api v0.0.0-20190612125737-db0771252981 | ||
k8s.io/apiextensions-apiserver v0.0.0-20190228180357-d002e88f6236 | ||
k8s.io/apimachinery v0.0.0-20190612125636-6a5db36e93ad | ||
k8s.io/client-go v11.0.0+incompatible | ||
k8s.io/kube-openapi v0.0.0-20190320154901-5e45bb682580 | ||
k8s.io/kubernetes v1.11.8-beta.0.0.20190124204751-3a10094374f2 | ||
sigs.k8s.io/controller-runtime v0.1.10 | ||
sigs.k8s.io/controller-tools v0.1.8 // indirect | ||
) | ||
|
||
// Pinned to kubernetes-1.13.4 | ||
replace ( | ||
k8s.io/api => k8s.io/api v0.0.0-20190222213804-5cb15d344471 | ||
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.0.0-20190228180357-d002e88f6236 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20190221213512-86fb29eff628 | ||
k8s.io/apiserver => k8s.io/apiserver v0.0.0-20190228174905-79427f02047f | ||
k8s.io/cli-runtime => k8s.io/cli-runtime v0.0.0-20190228180923-a9e421a79326 | ||
k8s.io/client-go => k8s.io/client-go v0.0.0-20190228174230-b40b2a5939e4 | ||
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20181117043124-c2090bec4d9b | ||
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.0.0-20190228175259-3e0149950b0e | ||
k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20180711000925-0cf8f7e6ed1d | ||
k8s.io/kubernetes => k8s.io/kubernetes v1.13.4 | ||
) |
Oops, something went wrong.