Skip to content
This repository was archived by the owner on Jan 28, 2025. It is now read-only.

Commit 0accb50

Browse files
make codegen
Signed-off-by: PhilippPlotnikov <[email protected]>
1 parent accec27 commit 0accb50

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ require (
3737
gopkg.in/yaml.v2 v2.4.0
3838
k8s.io/api v0.23.3
3939
k8s.io/apiextensions-apiserver v0.23.1
40-
k8s.io/apimachinery v0.23.3
40+
k8s.io/apimachinery v0.23.4
4141
k8s.io/apiserver v0.23.1
4242
k8s.io/cli-runtime v0.23.1
4343
k8s.io/client-go v0.23.3

rollout/trafficrouting/traefik/traefik.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ type ClientInterface interface {
4141
}
4242

4343
func NewReconciler(cfg ReconcilerConfig) *Reconciler {
44-
reconciler := Reconciler{
44+
reconciler := &Reconciler{
4545
Rollout: cfg.Rollout,
4646
Client: cfg.Client,
4747
}
48-
return &reconciler
48+
return reconciler
4949
}
5050

5151
func NewDynamicClient(di dynamic.Interface, namespace string) dynamic.ResourceInterface {

0 commit comments

Comments
 (0)