Skip to content

Commit

Permalink
fix changed method signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWeindel committed Aug 9, 2024
1 parent ccc8e84 commit 325e28f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/gardener-extension-shoot-cert-service/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (o *Options) run(ctx context.Context) error {
ctrlConfig.Apply(&controller.DefaultAddOptions.ServiceConfig)
o.controllerOptions.Completed().Apply(&controller.DefaultAddOptions.ControllerOptions)
o.healthOptions.Completed().Apply(&healthcheck.DefaultAddOptions.Controller)
o.reconcileOptions.Completed().Apply(&controller.DefaultAddOptions.IgnoreOperationAnnotation)
o.reconcileOptions.Completed().Apply(&controller.DefaultAddOptions.IgnoreOperationAnnotation, nil)
o.heartbeatOptions.Completed().Apply(&heartbeat.DefaultAddOptions)

if err := o.controllerSwitches.Completed().AddToManager(ctx, mgr); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion imagevector/imagevector.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func init() {
imageVector, err = imagevector.Read([]byte(imagesYAML))
runtime.Must(err)

imageVector, err = imagevector.WithEnvOverride(imageVector)
imageVector, err = imagevector.WithEnvOverride(imageVector, imagevector.OverrideEnv)
runtime.Must(err)
}

Expand Down

0 comments on commit 325e28f

Please sign in to comment.