We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31b72ed commit 0319cb7Copy full SHA for 0319cb7
pkg/drivers/linode/linode.go
@@ -311,7 +311,8 @@ func (d *Driver) SetConfigFromFlags(flags drivers.DriverOptions) error {
311
}
312
313
if len(d.InstanceLabel) > 64 {
314
- d.InstanceLabel = d.InstanceLabel[0:64]
+ d.InstanceLabel = d.InstanceLabel[:64]
315
+ log.Warnf("The name for this machine exceeds the 64 character Linode label limit. Truncating to %s", d.InstanceLabel)
316
317
318
return nil
0 commit comments