Skip to content

Commit d729d19

Browse files
Microzuul CIGerrit Code Review
Microzuul CI
authored and
Gerrit Code Review
committed
Merge "zuul-merger: fix CRD logLevel parameter not handled correctly"
2 parents 4a778a4 + a2bdc22 commit d729d19

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

controllers/zuul.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ func (r *SFController) ensureZuulLoggingConfigMap() {
352352
zuulWebLogLevel = r.cr.Spec.Zuul.Web.LogLevel
353353
}
354354
if r.cr.Spec.Zuul.Merger.LogLevel != "" {
355-
zuulMergerLogLevel = r.cr.Spec.Zuul.Web.LogLevel
355+
zuulMergerLogLevel = r.cr.Spec.Zuul.Merger.LogLevel
356356
}
357357
var forwardLogs = false
358358
var inputBaseURL = ""
@@ -625,6 +625,7 @@ func (r *SFController) EnsureZuulMerger(cfg *ini.File) bool {
625625
"zuul-image": getZuulImage(service),
626626
"serial": "5",
627627
"zuul-connections": utils.IniSectionsChecksum(cfg, utils.IniGetSectionNamesByPrefix(cfg, "connection")),
628+
"zuul-logging": utils.Checksum([]byte(r.getZuulLoggingString("zuul-merger"))),
628629
"corporate-ca-certs-version": getCMVersion(corporateCM, corporateCMExists),
629630
}
630631

doc/reference/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ All notable changes to this project will be documented in this file.
1111
### Deprecated
1212
### Removed
1313
### Fixed
14+
15+
- zuul-merger: CRD logLevel parameter not handled correctly
16+
1417
### Security
1518

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

0 commit comments

Comments
 (0)