Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions admin/provisioner/kubernetes/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@
// Create unique host
host := p.getHost(provisionID)

// Compute storage. If an override is provided on the project, it takes precedence over the slot-based default.
storageBytes := 40 * int64(args.Slots) * int64(datasize.GB)
// Compute storage. If an override is provided on the project, it takes precedence over the slot-based default.

Check failure on line 195 in admin/provisioner/kubernetes/kubernetes.go

View workflow job for this annotation

GitHub Actions / lint

File is not properly formatted (gci)
storageBytes := int64(args.Slots) * int64(datasize.GB)
Comment thread
himadrisingh marked this conversation as resolved.
Outdated
if args.OverrideDiskGB != nil && *args.OverrideDiskGB > 0 {
storageBytes = *args.OverrideDiskGB * int64(datasize.GB)
}
Expand Down
Loading