update backblaze pricing

This commit is contained in:
Daniel Bulant 2023-08-29 13:14:27 +02:00
parent 6f8c4ff84c
commit 34245a1bef
2 changed files with 3 additions and 3 deletions

View file

@ -64,7 +64,7 @@ Has a policy that egress shouldn't be higher than the stored amount. Consider us
| Category | Free | Paid |
| -------- | ---- | ---- |
| Storage | 10GB | $5/TB/month |
| Storage | 10GB | $6/TB/month |
| Egress | 1GB/day | $10/TB/month |
| Class A ops | $\infty$ | - |
| Class B ops | 2500/day | $4 / 10 million |

View file

@ -27,8 +27,8 @@
}, {
name: "Backblaze B2",
nameShort: "B2",
price: ({ storage, egress, fileCount, dataRetention, cloudflareProxy }) => 4 * storage + (10 * egress * (cloudflareProxy ? 0 : 1)) + Math.max(0, fileCount - 2500)*4/10e6,
priceString: "4 * storage + (10 * egress * (cloudflareProxy ? 0 : 1)) + Math.max(0, fileCount - 2500)*4/10e6",
price: ({ storage, egress, fileCount, dataRetention, cloudflareProxy }) => 6 * storage + (10 * egress * (cloudflareProxy ? 0 : 1)) + Math.max(0, fileCount - 2500)*4/10e6,
priceString: "6 * storage + (10 * egress * (cloudflareProxy ? 0 : 1)) + Math.max(0, fileCount - 2500)*4/10e6",
color: "red",
link: "backblaze-b2"
}, {