Skip to content

Commit 7ef3c96

Browse files
committed
Update go.mod in guestbook-operator
This commit updates go.mod on examples/guestbook-controller to latest. And also fixes a nit about function name in test.
1 parent 848d48e commit 7ef3c96

File tree

3 files changed

+135
-5
lines changed

3 files changed

+135
-5
lines changed

examples/guestbook-operator/controllers/guestbook_controller_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"sigs.k8s.io/kubebuilder-declarative-pattern/pkg/test/golden"
2525
)
2626

27-
func TestDashboard(t *testing.T) {
27+
func TestGuestbook(t *testing.T) {
2828
v := golden.NewValidator(t, api.SchemeBuilder)
2929
dr := &GuestbookReconciler{
3030
Client: v.Manager().GetClient(),

examples/guestbook-operator/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ go 1.13
44

55
require (
66
github.com/go-logr/logr v0.1.0
7-
k8s.io/apimachinery v0.0.0-20190913080033-27d36303b655
8-
k8s.io/client-go v0.0.0-20190918160344-1fbdaa4c8d90
9-
sigs.k8s.io/controller-runtime v0.4.0
10-
sigs.k8s.io/kubebuilder-declarative-pattern v0.0.0-20200317144824-bbf1fb2a4a9a
7+
k8s.io/apimachinery v0.18.2
8+
k8s.io/client-go v0.18.2
9+
sigs.k8s.io/controller-runtime v0.6.0
10+
sigs.k8s.io/kubebuilder-declarative-pattern v0.0.0-20200522144838-848d48e5b073
1111
)

0 commit comments

Comments
 (0)