Documentation ¶
Index ¶
Constants ¶
View Source
const ( // DefaultOperatorNamespace is the namespace in which all resources owned by the operator are installed. DefaultOperatorNamespace = "gmp-system" // DefaultPublicNamespace is the namespace where the operator will check for user-specified // configuration data. DefaultPublicNamespace = "gmp-public" // Fixed names used in various resources managed by the operator. NameOperator = "gmp-operator" // The well-known app name label. LabelAppName = "app.kubernetes.io/name" // The component name, will be exposed as metric name. AnnotationMetricName = "components.gke.io/component-name" // ClusterAutoscalerSafeEvictionLabel is the annotation label that determines // whether the cluster autoscaler can safely evict a Pod when the Pod doesn't // satisfy certain eviction criteria. ClusterAutoscalerSafeEvictionLabel = "cluster-autoscaler.kubernetes.io/safe-to-evict" // The k8s Application, will be exposed as component name. KubernetesAppName = "app" RuleEvaluatorAppName = "managed-prometheus-rule-evaluator" AlertmanagerAppName = "managed-prometheus-alertmanager" )
View Source
const ( NameOperatorConfig = "config" NameRuleEvaluator = "rule-evaluator" NameCollector = "collector" NameAlertmanager = "alertmanager" )
Base resource names which may be used for multiple different resource kinds related to the given component.
View Source
const ( RulesSecretName = "rules" CollectionSecretName = "collection" AlertmanagerSecretName = "alertmanager" AlertmanagerPublicSecretName = "alertmanager" AlertmanagerPublicSecretKey = "alertmanager.yaml" )
View Source
const ( CollectorPrometheusContainerName = "prometheus" CollectorPrometheusContainerPortName = "prom-metrics" CollectorConfigReloaderContainerPortName = "cfg-rel-metrics" )
Collector Kubernetes Deployment extraction/detection.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Operator ¶
type Operator struct {
// contains filtered or unexported fields
}
Operator to implement managed collection for Google Prometheus Engine.
func (*Operator) Run ¶
func (o *Operator) Run(ctx context.Context, registry prometheus.Registerer) error
Run the reconciliation loop of the operator. The passed owner references are set on cluster-wide resources created by the operator.
type Options ¶
type Options struct { // ID of the project of the cluster. ProjectID string // Location of the cluster. Location string // Name of the cluster the operator acts on. Cluster string // Namespace to which the operator deploys any associated resources. OperatorNamespace string // Namespace to which the operator looks for user-specified configuration // data, like Secrets and ConfigMaps. PublicNamespace string // Certificate of the server in base 64. TLSCert string // Key of the server in base 64. TLSKey string // Certificate authority in base 64. CACert string // Webhook serving address. ListenAddr string // Cleanup resources without this annotation. CleanupAnnotKey string // Whether to disable target polling. TargetPollDisabled bool // The number of upper bound threads to use for target polling otherwise // use the default. TargetPollConcurrency uint16 }
Options for the Operator.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
apis
|
|
monitoring/v1
Package v1 is the v1 version of the API.
|
Package v1 is the v1 version of the API. |
monitoring/v1alpha1
Package v1alpha1 is the v1alpha1 version of the API.
|
Package v1alpha1 is the v1alpha1 version of the API. |
generated
|
|
clientset/versioned
This package has the automatically generated clientset.
|
This package has the automatically generated clientset. |
clientset/versioned/fake
This package has the automatically generated fake clientset.
|
This package has the automatically generated fake clientset. |
clientset/versioned/scheme
This package contains the scheme of the automatically generated clientset.
|
This package contains the scheme of the automatically generated clientset. |
clientset/versioned/typed/monitoring/v1
This package has the automatically generated typed clients.
|
This package has the automatically generated typed clients. |
clientset/versioned/typed/monitoring/v1/fake
Package fake has the automatically generated clients.
|
Package fake has the automatically generated clients. |
Click to show internal directories.
Click to hide internal directories.