Skip to content

Commit

Permalink
Merge pull request #756 from sp98/BZ-2319102
Browse files Browse the repository at this point in the history
Bug 2319102:  core: fix deletion of the osd-replace-config cm
  • Loading branch information
travisn authored Oct 16, 2024
2 parents 439ec9b + 11eee73 commit 8ee79a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/operator/ceph/cluster/osd/osd.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ func (c *Cluster) Start() error {
}

if c.spec.Storage.Store.UpdateStore == OSDStoreUpdateConfirmation {
delOpts := &k8sutil.DeleteOptions{MustDelete: true, WaitOptions: k8sutil.WaitOptions{Wait: true}}
delOpts := &k8sutil.DeleteOptions{WaitOptions: k8sutil.WaitOptions{Wait: true}}
err := k8sutil.DeleteConfigMap(c.clusterInfo.Context, c.context.Clientset, OSDReplaceConfigName, namespace, delOpts)
if err != nil {
if kerrors.IsNotFound(err) {
Expand Down

0 comments on commit 8ee79a8

Please sign in to comment.