mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-02 00:07:50 +00:00
Fix mountpoint values
This commit is contained in:
parent
49543aca61
commit
86ddc0f96a
@ -585,7 +585,7 @@ func (self *awsInstanceType) getEbsMountDevices() []string {
|
||||
// See: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html
|
||||
devices := []string{}
|
||||
for c := 'f'; c <= 'p'; c++ {
|
||||
devices = append(devices, fmt.Sprintf("/dev/sd%s", c))
|
||||
devices = append(devices, fmt.Sprintf("/dev/sd%c", c))
|
||||
}
|
||||
return devices
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user