Skip to content

Commit

Permalink
Merge pull request #180 from lreciomelero/fix/SC_creation_without_dec…
Browse files Browse the repository at this point in the history
…laration

fixing bugs in GCP when SC is not declarated
  • Loading branch information
lreciomelero authored Jun 27, 2023
2 parents 79bc90e + 91ad3fe commit df004c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cluster/internal/create/actions/createworker/gcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ func (b *GCPBuilder) getParameters(sc commons.StorageClass) commons.SCParameters
case "premium":
return mergeSCParameters(sc.Parameters, premiumGCPParameters)
default:
return mergeSCParameters(sc.Parameters, premiumAZParameters)
return mergeSCParameters(sc.Parameters, premiumGCPParameters)

}
}
Expand Down

0 comments on commit df004c3

Please sign in to comment.