Merge pull request #161 from aaliddell/master

Enforce lower case hostname for node
This commit is contained in:
Darren Shepherd 2019-03-05 12:53:02 -07:00 committed by GitHub
commit 10be950df5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,7 @@ import (
"os"
"os/exec"
"path/filepath"
"strings"
"time"
"github.com/pkg/errors"
@ -90,6 +91,10 @@ func getHostnameAndIP(info cmds.Agent) (string, string, error) {
name = hostname
}
// Use lower case hostname to comply with kubernetes constraint:
// https://github.com/kubernetes/kubernetes/issues/71140
name = strings.ToLower(name)
return name, ip, nil
}