github.com/cilium/cilium@v1.16.2/pkg/hubble/defaults/defaults.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright Authors of Cilium
     3  
     4  package defaults
     5  
     6  const (
     7  	// ServerPort is the default port for hubble server when a provided
     8  	// listen address does not include one.
     9  	ServerPort = 4244
    10  
    11  	// RelayPort is the default port for the hubble-relay server.
    12  	RelayPort = 4245
    13  
    14  	// GRPCServiceName is the name of the Hubble gRPC service.
    15  	GRPCServiceName = "hubble-grpc"
    16  
    17  	// DomainName specifies the domain name to use when constructing the server
    18  	// name for peer change notifications.
    19  	DomainName = "cilium.io"
    20  
    21  	// SensitiveValueRedacted is the string constant that is used to redact
    22  	// sensitive information.
    23  	SensitiveValueRedacted = "HUBBLE_REDACTED"
    24  )