diff --git a/CHANGELOG.md b/CHANGELOG.md index d7dc960..2d2abfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [v0.4.3] - 2023-12-21 +## [v0.4.4] - 2023-12-21 ### Changed - refactor(main): leader-election ID (name) made to be more descriptive and align with best practices - refactor(main): simplify configuration model for the controller-manager +## [v0.4.3] - 2023-11-16 +### Fixed +- fix(dockerfile): put arg above use to work with docker buildx + ## [v0.4.2] - 2023-11-16 ### Changed - ci(github): added GitHub workflows diff --git a/main.go b/main.go index 0ac984d..40897c9 100644 --- a/main.go +++ b/main.go @@ -87,7 +87,7 @@ func init() { "The identity to use for leader-election", ) flag.BoolVar( - &enableLeaderElection, + &enableLeaderElection, "leader-elect", false, "Enable leader election for controller manager. Enabling this will ensure there is only one active controller manager.",