Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jokestax committed Nov 14, 2024
1 parent 2cfc2e2 commit 4f96e48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/KubeArmorOperator/internal/controller/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ func (clusterWatcher *ClusterWatcher) DeleteAllTlsSecrets() error {
for _, secret := range tlsSecrets {
err := clusterWatcher.Client.CoreV1().Secrets(common.Namespace).Delete(context.Background(), secret, v1.DeleteOptions{})
if err != nil {
clusterWatcher.Log.Errorf("error while deleing secret: %s, error=%s", secret, err.Error())
clusterWatcher.Log.Errorf("error while deleting secret: %s, error=%s", secret, err.Error())
return err
}
}
Expand Down

0 comments on commit 4f96e48

Please sign in to comment.