mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	Hostname behavior across operating systems is inconsistent (Macs can have uppercase host names, so can some other systems). In general, always strings.ToLower(os.Hostname()).
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2015 Google Inc. All rights reserved.
 | 
						|
 | 
						|
Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
you may not use this file except in compliance with the License.
 | 
						|
You may obtain a copy of the License at
 | 
						|
 | 
						|
    http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
Unless required by applicable law or agreed to in writing, software
 | 
						|
distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
See the License for the specific language governing permissions and
 | 
						|
limitations under the License.
 | 
						|
*/
 | 
						|
 | 
						|
package util
 | 
						|
 | 
						|
import (
 | 
						|
	"os/exec"
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"github.com/golang/glog"
 | 
						|
)
 | 
						|
 | 
						|
func GetHostname(hostnameOverride string) string {
 | 
						|
	hostname := []byte(hostnameOverride)
 | 
						|
	if string(hostname) == "" {
 | 
						|
		// Note: We use exec here instead of os.Hostname() because we
 | 
						|
		// want the FQDN, and this is the easiest way to get it.
 | 
						|
		fqdn, err := exec.Command("hostname", "-f").Output()
 | 
						|
		if err != nil {
 | 
						|
			glog.Fatalf("Couldn't determine hostname: %v", err)
 | 
						|
		}
 | 
						|
		hostname = fqdn
 | 
						|
	}
 | 
						|
	return strings.ToLower(strings.TrimSpace(string(hostname)))
 | 
						|
}
 |