Skip to content

Commit

Permalink
Merge pull request #522 from pjbgf/audit-followup
Browse files Browse the repository at this point in the history
Fix inconsistent code-style raised at security audit
  • Loading branch information
stefanprodan authored Dec 22, 2021
2 parents 8d61ff7 + facda8b commit 1e84289
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions controllers/kustomization_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -904,16 +904,18 @@ func (r *KustomizationReconciler) finalize(ctx context.Context, kustomization ku
func (r *KustomizationReconciler) event(ctx context.Context, kustomization kustomizev1.Kustomization, revision, severity, msg string, metadata map[string]string) {
log := logr.FromContext(ctx)

annotations := map[string]string{
kustomizev1.GroupVersion.Group + "/revision": revision,
}
if r.EventRecorder != nil {
annotations := map[string]string{
kustomizev1.GroupVersion.Group + "/revision": revision,
}

eventtype := "Normal"
if severity == events.EventSeverityError {
eventtype = "Warning"
}
eventtype := "Normal"
if severity == events.EventSeverityError {
eventtype = "Warning"
}

r.EventRecorder.AnnotatedEventf(&kustomization, annotations, eventtype, severity, msg)
r.EventRecorder.AnnotatedEventf(&kustomization, annotations, eventtype, severity, msg)
}

if r.ExternalEventRecorder != nil {
objRef, err := reference.GetReference(r.Scheme, &kustomization)
Expand Down

0 comments on commit 1e84289

Please sign in to comment.