Skip to content
This repository was archived by the owner on Oct 2, 2025. It is now read-only.

Commit f5f4b11

Browse files
feat(provider/google): Added new disks type for gce in clouddriver (#5914)
Added new disks type for gce in clouddriver. currently, only can be used pd-standard and pd-ssd. Co-authored-by: Jason <jason.mcintosh@armory.io>
1 parent 3f43ac2 commit f5f4b11

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

clouddriver-google/src/main/groovy/com/netflix/spinnaker/clouddriver/google/model/GoogleDiskType.groovy

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ package com.netflix.spinnaker.clouddriver.google.model
1818

1919
public enum GoogleDiskType {
2020
PD_STANDARD("pd-standard", true),
21+
PD_EXTREME("pd-extreme", true),
22+
PD_BALANCED("pd-balanced", true),
2123
PD_SSD("pd-ssd", true),
2224
LOCAL_SSD("local-ssd", false),
2325
HYPERDISK_BALANCED("hyperdisk-balanced", true)

0 commit comments

Comments
 (0)