Skip to content

Commit 02dc0b4

Browse files
authored
Merge pull request #27 from cybozu-go/update-contour-plus
update controller-runtime
2 parents 280be59 + 2835d79 commit 02dc0b4

File tree

633 files changed

+169359
-79044
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

633 files changed

+169359
-79044
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ export GO111MODULE GOFLAGS
1111
GOOS = $(shell go env GOOS)
1212
GOARCH = $(shell go env GOARCH)
1313
SUDO = sudo
14-
KUBEBUILDER_VERSION = 2.1.0
15-
CTRLTOOLS_VERSION = 0.2.2
14+
KUBEBUILDER_VERSION = 2.2.0
15+
CTRLTOOLS_VERSION = 0.2.4
1616

1717
all: bin/contour-plus
1818

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Supported environments
1515
----------------------
1616

1717
- Kubernetes
18-
- 1.14
18+
- 1.16
1919
- Contour
2020
- 0.12
2121
- ExternalDNS

go.mod

Lines changed: 27 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,39 @@ module github.com/cybozu-go/contour-plus
22

33
go 1.13
44

5-
replace (
6-
k8s.io/api => k8s.io/api v0.0.0-20190918195907-bd6ac527cfd2
7-
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20190817020851-f2f3a405f61d
8-
k8s.io/client-go => k8s.io/client-go v0.0.0-20190918200256-06eb1244587a
9-
launchpad.net/gocheck => github.com/go-check/check v0.0.0-20180628173108-788fd7840127
10-
)
5+
replace launchpad.net/gocheck => github.com/go-check/check v0.0.0-20180628173108-788fd7840127
116

127
require (
8+
github.com/cespare/xxhash/v2 v2.1.1 // indirect
139
github.com/go-logr/logr v0.1.0
14-
github.com/jetstack/cert-manager v0.11.0
10+
github.com/gogo/protobuf v1.3.1 // indirect
11+
github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9 // indirect
12+
github.com/hashicorp/golang-lru v0.5.3 // indirect
13+
github.com/imdario/mergo v0.3.8 // indirect
14+
github.com/jetstack/cert-manager v0.12.0
1515
github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024
1616
github.com/kubernetes-incubator/external-dns v0.5.12
17-
github.com/onsi/ginkgo v1.8.0
18-
github.com/onsi/gomega v1.5.0
17+
github.com/onsi/ginkgo v1.10.1
18+
github.com/onsi/gomega v1.7.0
1919
github.com/projectcontour/contour v1.0.0
20+
github.com/prometheus/client_golang v1.2.1 // indirect
21+
github.com/prometheus/client_model v0.0.0-20191202183732-d1d2010b5bee // indirect
22+
github.com/prometheus/procfs v0.0.8 // indirect
2023
github.com/spf13/cobra v0.0.5
2124
github.com/spf13/viper v1.3.2
22-
k8s.io/api v0.0.0-20190918195907-bd6ac527cfd2
23-
k8s.io/apimachinery v0.0.0-20190913080033-27d36303b655
24-
k8s.io/client-go v11.0.1-0.20190409021438-1a26190bd76a+incompatible
25-
k8s.io/klog v0.4.0
26-
sigs.k8s.io/controller-runtime v0.3.0
25+
go.uber.org/zap v1.10.0 // indirect
26+
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect
27+
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 // indirect
28+
golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6 // indirect
29+
golang.org/x/sys v0.0.0-20191210023423-ac6580df4449 // indirect
30+
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
31+
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
32+
google.golang.org/appengine v1.6.5 // indirect
33+
gopkg.in/yaml.v2 v2.2.7 // indirect
34+
k8s.io/api v0.0.0-20191114100352-16d7abae0d2a
35+
k8s.io/apimachinery v0.0.0-20191028221656-72ed19daf4bb
36+
k8s.io/client-go v0.0.0-20191114101535-6c5935290e33
37+
k8s.io/klog v1.0.0
38+
k8s.io/utils v0.0.0-20191114200735-6ca3b61696b6 // indirect
39+
sigs.k8s.io/controller-runtime v0.4.0
2740
)

vendor/github.com/cespare/xxhash/v2/.travis.yml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cespare/xxhash/v2/LICENSE.txt

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cespare/xxhash/v2/README.md

Lines changed: 67 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cespare/xxhash/v2/go.mod

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cespare/xxhash/v2/go.sum

Whitespace-only changes.

0 commit comments

Comments
 (0)