Skip to content

Commit

Permalink
make codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp-Plotnikov committed Mar 11, 2022
1 parent f63cf7c commit 0fbf1bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ require (
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.23.3
k8s.io/apiextensions-apiserver v0.23.1
k8s.io/apimachinery v0.23.3
k8s.io/apimachinery v0.23.4
k8s.io/apiserver v0.23.1
k8s.io/cli-runtime v0.23.1
k8s.io/client-go v0.23.3
Expand Down
4 changes: 2 additions & 2 deletions rollout/trafficrouting/traefik/traefik.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ type ClientInterface interface {
}

func NewReconciler(cfg ReconcilerConfig) *Reconciler {
reconciler := Reconciler{
reconciler := &Reconciler{
Rollout: cfg.Rollout,
Client: cfg.Client,
}
return &reconciler
return reconciler
}

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

0 comments on commit 0fbf1bf

Please sign in to comment.