Skip to content

Fix Nifiuser certificate creation #424

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
- [PR #416](https://github.com/konpyutaika/nifikop/pull/416) - **[Operator]** Certmanager-user: k8sutil: corrects IsAlreadyOwnedError.
- [PR #418](https://github.com/konpyutaika/nifikop/pull/418) - **[Operator/NifiCluster]** Fixed issue where new nodes could not be added to NiFi cluster with a custom authorizer configuration provided.
- [PR #420](https://github.com/konpyutaika/nifikop/pull/420) - **[Operator/NifiCluster]** Patch duplicate Prometheus Reporting Task.
- [PR #424](https://github.com/konpyutaika/nifikop/pull/424) - **[Operator]** Fix Nifiuser certificate creation.

### Deprecated

Expand Down
3 changes: 0 additions & 3 deletions pkg/k8sutil/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ func Reconcile(log zap.Logger, client runtimeClient.Client, desired runtimeClien
)
}
if apierrors.IsNotFound(err) {
if err := patch.DefaultAnnotator.SetLastAppliedAnnotation(desired); err != nil {
return errors.WrapIf(err, "could not apply last state to annotation")
}
if err := client.Create(context.TODO(), desired); err != nil {
return errorfactory.New(
errorfactory.APIFailure{},
Expand Down