Skip to content
Open
Changes from all 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
2 changes: 1 addition & 1 deletion admin/provisioner/kubernetes/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ func (p *KubernetesProvisioner) Provision(ctx context.Context, r *provisioner.Re
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)
storageBytes := int64(args.Slots) * int64(datasize.GB)
if args.OverrideDiskGB != nil && *args.OverrideDiskGB > 0 {
storageBytes = *args.OverrideDiskGB * int64(datasize.GB)
}
Expand Down
Loading