Skip to content

Commit

Permalink
fixed the data format to fit regex format (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
deepakm-ntnx authored Sep 20, 2022
1 parent ca02e08 commit 84cf29e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controllers/nutanixmachine_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ var (
)

func init() {
minMachineSystemDiskSize = resource.MustParse("20Gib")
minMachineMemorySize = resource.MustParse("2Gib")
minMachineSystemDiskSize = resource.MustParse("20Gi")
minMachineMemorySize = resource.MustParse("2Gi")
}

// NutanixMachineReconciler reconciles a NutanixMachine object
Expand Down

0 comments on commit 84cf29e

Please sign in to comment.