mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-03 14:55:47 +00:00
cmd/k8s-operator: minor fix in name gen (#10830)
Updates#cleanup Signed-off-by: Irbe Krumina <irbe@tailscale.com>
This commit is contained in:
parent
b89c113365
commit
169778e23b
@ -222,10 +222,8 @@ func statefulSetNameBase(parent string) string {
|
|||||||
if excess <= 0 {
|
if excess <= 0 {
|
||||||
return base
|
return base
|
||||||
}
|
}
|
||||||
base = base[:len(base)-1-excess] // cut off the excess chars
|
base = base[:len(base)-1-excess] // cut off the excess chars
|
||||||
if !strings.HasSuffix(base, "-") { // dash may have been cut by the generator
|
base = base + "-" // re-instate the dash
|
||||||
base = base + "-"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ func Test_statefulSetNameBase(t *testing.T) {
|
|||||||
if _, err := b.WriteString("a"); err != nil {
|
if _, err := b.WriteString("a"); err != nil {
|
||||||
t.Fatalf("error writing to string builder: %v", err)
|
t.Fatalf("error writing to string builder: %v", err)
|
||||||
}
|
}
|
||||||
baseLength := len(b.String())
|
baseLength := b.Len()
|
||||||
if baseLength > 43 {
|
if baseLength > 43 {
|
||||||
baseLength = 43 // currently 43 is the max base length
|
baseLength = 43 // currently 43 is the max base length
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user