mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-05 02:09:56 +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
|
// See: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html
|
||||||
devices := []string{}
|
devices := []string{}
|
||||||
for c := 'f'; c <= 'p'; c++ {
|
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
|
return devices
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user