Documentation ¶
Index ¶
- Constants
- func RunServer(sa *Args, livenessProbeController, readinessProbeController probe.Controller)
- func StartProbeCheck(livenessProbeController, readinessProbeController probe.Controller, ...)
- func StartProfiling(stop <-chan struct{}, port uint)
- func StartSelfMonitoring(stop <-chan struct{}, port uint)
- type Args
- type Server
Constants ¶
View Source
const ( //DefaultProbeCheckInterval defines default probeCheck interval DefaultProbeCheckInterval = 2 * time.Second //DefaultLivenessProbeFilePath defines default livenessProbe filePath DefaultLivenessProbeFilePath = "/healthLiveness" //DefaultReadinessProbeFilePath defines default readinessProbe filePath DefaultReadinessProbeFilePath = "/healthReadiness" )
Variables ¶
This section is empty.
Functions ¶
func RunServer ¶
func RunServer(sa *Args, livenessProbeController, readinessProbeController probe.Controller)
RunServer start Galley Server mode
func StartProbeCheck ¶
func StartProbeCheck(livenessProbeController, readinessProbeController probe.Controller, stop <-chan struct{})
StartProbeCheck start probe check for Galley
func StartProfiling ¶
func StartProfiling(stop <-chan struct{}, port uint)
StartProfiling start the profiling for Galley
func StartSelfMonitoring ¶
func StartSelfMonitoring(stop <-chan struct{}, port uint)
StartSelfMonitoring start the self monitoring for Galley
Types ¶
type Args ¶
type Args struct { // The path to kube configuration file. KubeConfig string // resync period to be passed to the K8s machinery. ResyncPeriod time.Duration // Address to use for Galley's gRPC API. APIAddress string // Enables gRPC-level tracing EnableGRPCTracing bool // Maximum size of individual received gRPC messages MaxReceivedMessageSize uint // Maximum number of outstanding RPCs per connection MaxConcurrentStreams uint // Insecure gRPC service is used for the MCP server. CertificateFile and KeyFile is ignored. Insecure bool // The credential options to use for MCP. CredentialOptions *creds.Options // The introspection options to use IntrospectionOptions *ctrlz.Options // Enable galley server mode EnableServer bool // AccessListFile is the YAML file that specifies ids of the allowed mTLS peers. AccessListFile string // ConfigPath is the path for Galley specific config files ConfigPath string // ExcludedResourceKinds is a list of resource kinds for which no source events will be triggered. ExcludedResourceKinds []string // MeshConfigFile is the path for mesh config MeshConfigFile string // DNS Domain suffix to use while constructing Ingress based resources. DomainSuffix string // DisableResourceReadyCheck disables the CRD readiness check. This // allows Galley to start when not all supported CRD are // registered with the kube-apiserver. DisableResourceReadyCheck bool // SinkAddress should be set to the address of a MCP Resource // Sink service that Galley will dial out to. Leaving empty disables // sink. SinkAddress string // SinkAuthMode should be set to a name of an authentication plugin, // see the istio.io/istio/galley/pkg/autplugins package. SinkAuthMode string // SinkMeta list of key=values to attach as gRPC stream metadata to // outgoing Sink connections. SinkMeta []string }
Args contains the startup arguments to instantiate Galley.
func DefaultArgs ¶
func DefaultArgs() *Args
DefaultArgs allocates an Args struct initialized with Mixer's default configuration.
Click to show internal directories.
Click to hide internal directories.