Skip to content

Commit

Permalink
fix(installer): update disk space (#2152)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lis committed Nov 3, 2022
1 parent f9205d8 commit b989596
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/user/tke-installer/normal-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The hardware requirements for nodes mostly depend on your workloads, the minimum
* Hardware
* 8 vCPU
* 16 GB of Memory
* 50 GB of Disk Space
* 100 GB of Disk Space

> Note: Installer node need extra 25GB /var/lib/ disk to store images and temporary files, 50GB /opt disk to uncompress installer package
Expand Down
4 changes: 2 additions & 2 deletions pkg/platform/provider/baremetal/validation/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ const (
const (
MachineResourceRequstDiskPath = "/var/lib"
MachineResourceRequstLogDiskPath = "/var/log"
MachineResourceRequstDiskSpace = 50 // GiB
MachineResourceRequstLogDiskSpace = 10 // GiB
MachineResourceRequstDiskSpace = 100 // GiB
MachineResourceRequstLogDiskSpace = 10 // GiB
MachineResourceRequstCPU = 4
MachineResourceRequstMemory = 8 // GiB
)

0 comments on commit b989596

Please sign in to comment.