Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Merge pull request #411 from Sayrus/fix-sychronized-typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hiddeco authored May 11, 2020
2 parents 5f9e440 + f64c834 commit 0d0700b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/helmrelease-guide/debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $ kubectl describe -n <namespace> helmrelease/<name>
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal ReleaseSynced 55s helm-operator managed release 'default-podinfo-0' in namespace 'default' sychronized
Normal ReleaseSynced 55s helm-operator managed release 'default-podinfo-0' in namespace 'default' synchronized
Warning FailedReleaseSync 18s helm-operator synchronization of release 'default-podinfo-0' in namespace 'default' failed: upgrade failed: "" is invalid: patch: [...]
```

Expand Down
2 changes: 1 addition & 1 deletion pkg/operator/operator.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ func (c *Controller) syncHandler(key string) error {
fmt.Sprintf("synchronization of release '%s' in namespace '%s' failed: %s", hr.GetReleaseName(), hr.GetTargetNamespace(), err.Error()))
} else {
c.recorder.Event(hr, corev1.EventTypeNormal, ReleaseSynced,
fmt.Sprintf("managed release '%s' in namespace '%s' sychronized", hr.GetReleaseName(), hr.GetTargetNamespace()))
fmt.Sprintf("managed release '%s' in namespace '%s' synchronized", hr.GetReleaseName(), hr.GetTargetNamespace()))
}
return nil
}
Expand Down

0 comments on commit 0d0700b

Please sign in to comment.