Skip to content

Commit

Permalink
B-542: fix DS_MAD for ceph datastore (#560)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: Michal Opala <[email protected]>
  • Loading branch information
treywelsh and sk4zuzu authored Oct 18, 2024
1 parent 5004af7 commit 106877b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
BUG FIXES:

* resources/opennebula_vm_group: fix anti affinity reading (#497)
* resources/opennebula_datastore: remove DS_MAD for Ceph SYSTEM datastore (#542)

# 1.4.1 (Unreleased)

Expand Down
2 changes: 1 addition & 1 deletion opennebula/resource_opennebula_datastore.go
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,7 @@ func resourceOpennebulaDatastoreCreate(ctx context.Context, d *schema.ResourceDa

if dsType == "IMAGE" {
tpl.Add("TM_MAD", "ceph")
tpl.Add("DS_MAD", "ceph")
} else if dsType == "SYSTEM" {
if cephAttrsMap["local_storage"].(bool) {
tpl.Add("TM_MAD", "ssh")
Expand Down Expand Up @@ -379,7 +380,6 @@ func resourceOpennebulaDatastoreCreate(ctx context.Context, d *schema.ResourceDa

func addCephAttributes(attrs map[string]interface{}, tpl *datastore.Template) {

tpl.Add("DS_MAD", "ceph")
tpl.Add("DISK_TYPE", "RBD")

poolName := attrs["pool_name"].(string)
Expand Down

0 comments on commit 106877b

Please sign in to comment.