Skip to content

Commit

Permalink
fix: lower version on controller-runtime to 0.17 to fix missing metho…
Browse files Browse the repository at this point in the history
…d inputs

Signed-off-by: Dustin Scott <[email protected]>
  • Loading branch information
scottd018 committed Jul 3, 2024
1 parent 403fc85 commit 3c5b241
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions internal/utils/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,12 @@ const (
// makefile and go.mod versions.
// NOTE: please ensure the ControllerToolsVersion matches the go.mod file as we
// use this both in code generation as well as the generated project code.
ControllerToolsVersion = "v0.15.0"
ControllerRuntimeVersion = "v0.18.4"
ControllerToolsVersion = "v0.15.0"

// NOTE: ControllerRuntimeVersion will need to match operator-builder-tools version
// otherwise their could be inconsistencies in method calls which cause
// ambiguous errors.
ControllerRuntimeVersion = "v0.17.3"
KustomizeVersion = "v5.4.1"
GolangCILintVersion = "v1.57.2"
EnvtestVersion = "release-0.17"
Expand Down

0 comments on commit 3c5b241

Please sign in to comment.