mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-04 07:49:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			979 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			979 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package netutil
 | 
						|
 | 
						|
import (
 | 
						|
	"errors"
 | 
						|
	"fmt"
 | 
						|
	"github.com/storageos/go-api/serror"
 | 
						|
	"strings"
 | 
						|
)
 | 
						|
 | 
						|
func errAllFailed(addrs []string) error {
 | 
						|
	msg := fmt.Sprintf("failed to dial all known cluster members, (%s)", strings.Join(addrs, ","))
 | 
						|
	help := "ensure that the value of $STORAGEOS_HOST (or the -H flag) is correct, and that there are healthy StorageOS nodes in this cluster"
 | 
						|
 | 
						|
	return serror.NewTypedStorageOSError(serror.APIUncontactable, nil, msg, help)
 | 
						|
}
 | 
						|
 | 
						|
func newInvalidNodeError(err error) error {
 | 
						|
	msg := fmt.Sprintf("invalid node format: %s", err)
 | 
						|
	help := "please check the format of $STORAGEOS_HOST (or the -H flag) complies with the StorageOS JOIN format"
 | 
						|
 | 
						|
	return serror.NewTypedStorageOSError(serror.InvalidHostConfig, err, msg, help)
 | 
						|
}
 | 
						|
 | 
						|
var errNoAddresses = errors.New("the MultiDialer instance has not been initialised with client addresses")
 | 
						|
var errUnsupportedScheme = errors.New("unsupported URL scheme")
 | 
						|
var errInvalidPortNumber = errors.New("invalid port number")
 |