Skip to content

Commit

Permalink
feat(provider/google): Added new disks type for gce in clouddriver (#…
Browse files Browse the repository at this point in the history
…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>
  • Loading branch information
jangjaelee and jasonmcintosh authored Jan 6, 2025
1 parent 3f43ac2 commit f5f4b11
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ package com.netflix.spinnaker.clouddriver.google.model

public enum GoogleDiskType {
PD_STANDARD("pd-standard", true),
PD_EXTREME("pd-extreme", true),
PD_BALANCED("pd-balanced", true),
PD_SSD("pd-ssd", true),
LOCAL_SSD("local-ssd", false),
HYPERDISK_BALANCED("hyperdisk-balanced", true)
Expand Down

0 comments on commit f5f4b11

Please sign in to comment.