 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Overview ¶
Package config holds the typed objects that define the schemas for assorted ConfigMap objects on which the Revision controller depends.
Index ¶
Constants ¶
      View Source
      
  
    const ( NetworkConfigName = "config-network" // IstioOutboundIPRangesKey is the name of the configuration entry // that specifies Istio outbound ip ranges. IstioOutboundIPRangesKey = "istio.sidecar.includeOutboundIPRanges" )
      View Source
      
  
    const (
	ControllerConfigName = "config-controller"
)
    
      View Source
      
  
const (
	ObservabilityConfigName = "config-observability"
)
    Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Controller ¶
type Controller struct {
	// AutoscalerImage is the name of the image used for the autoscaler pod.
	AutoscalerImage string
	// QueueSidecarImage is the name of the image used for the queue sidecar
	// injected into the revision pod
	QueueSidecarImage string
	// Repositories for which tag to digest resolving should be skipped
	RegistriesSkippingTagResolving map[string]struct{}
}
    Controller includes the configurations for the controller.
func NewControllerConfigFromConfigMap ¶
func NewControllerConfigFromConfigMap(config *corev1.ConfigMap) (*Controller, error)
NewControllerConfigFromConfigMap creates a Controller from the supplied configMap
func NewControllerConfigFromMap ¶
func NewControllerConfigFromMap(configMap map[string]string) (*Controller, error)
NewControllerConfigFromMap creates a Controller from the supplied Map
type Network ¶
type Network struct {
	// IstioOutboundIPRange specifies the IP ranges to intercept
	// by Istio sidecar.
	IstioOutboundIPRanges string
}
    Network contains the networking configuration defined in the network config map.
type Observability ¶
type Observability struct {
	// EnableVarLogCollection dedicates whether to set up a fluentd sidecar to
	// collect logs under /var/log/.
	EnableVarLogCollection bool
	// TODO(#818): Use the fluentd deamon set to collect /var/log.
	// FluentdSidecarImage is the name of the image used for the fluentd sidecar
	// injected into the revision pod. It is used only when enableVarLogCollection
	// is true.
	FluentdSidecarImage string
	// FluentdSidecarOutputConfig is the config for fluentd sidecar to specify
	// logging output destination.
	FluentdSidecarOutputConfig string
	// LoggingURLTemplate is a string containing the logging url template where
	// the variable REVISION_UID will be replaced with the created revision's UID.
	LoggingURLTemplate string
}
    Observability contains the configuration defined in the observability ConfigMap.
func NewObservabilityFromConfigMap ¶
func NewObservabilityFromConfigMap(configMap *corev1.ConfigMap) (*Observability, error)
NewObservabilityFromConfigMap creates a Observability from the supplied ConfigMap
 Click to show internal directories. 
   Click to hide internal directories.