Skip to content

Commit

Permalink
added hyperdisk-balanced as a valid drive type
Browse files Browse the repository at this point in the history
  • Loading branch information
pgm committed Oct 2, 2024
1 parent 8befed5 commit f58bb1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/sparklespray/model.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from pydantic import BaseModel, validator
from typing import List, Optional, Union

ALLOWED_DISK_TYPES = {"local-ssd", "pd-standard", "pd-balanced", "pd-ssd"}
ALLOWED_DISK_TYPES = {"local-ssd", "pd-standard", "pd-balanced", "pd-ssd", "hyperdisk-balanced"}

DEFAULT_SSD_SIZE = (
300 # slightly smaller than the 375 GB limit to avoid it allocating two volumes
Expand Down

0 comments on commit f58bb1f

Please sign in to comment.