Skip to content

Commit

Permalink
Merge "zuul-merger: fix CRD logLevel parameter not handled correctly"
Browse files Browse the repository at this point in the history
  • Loading branch information
Microzuul CI authored and Gerrit Code Review committed Jun 17, 2024
2 parents 4a778a4 + a2bdc22 commit d729d19
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion controllers/zuul.go
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ func (r *SFController) ensureZuulLoggingConfigMap() {
zuulWebLogLevel = r.cr.Spec.Zuul.Web.LogLevel
}
if r.cr.Spec.Zuul.Merger.LogLevel != "" {
zuulMergerLogLevel = r.cr.Spec.Zuul.Web.LogLevel
zuulMergerLogLevel = r.cr.Spec.Zuul.Merger.LogLevel
}
var forwardLogs = false
var inputBaseURL = ""
Expand Down Expand Up @@ -625,6 +625,7 @@ func (r *SFController) EnsureZuulMerger(cfg *ini.File) bool {
"zuul-image": getZuulImage(service),
"serial": "5",
"zuul-connections": utils.IniSectionsChecksum(cfg, utils.IniGetSectionNamesByPrefix(cfg, "connection")),
"zuul-logging": utils.Checksum([]byte(r.getZuulLoggingString("zuul-merger"))),
"corporate-ca-certs-version": getCMVersion(corporateCM, corporateCMExists),
}

Expand Down
3 changes: 3 additions & 0 deletions doc/reference/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ All notable changes to this project will be documented in this file.
### Deprecated
### Removed
### Fixed

- zuul-merger: CRD logLevel parameter not handled correctly

### Security

- Update of components base container images to addess several base OS security issues
Expand Down

0 comments on commit d729d19

Please sign in to comment.