@@ -418,26 +418,53 @@ func newPrometheus(
418
418
},
419
419
420
420
Spec : monv1.PrometheusSpec {
421
- Replicas : config .Replicas ,
421
+ CommonPrometheusFields : monv1.CommonPrometheusFields {
422
+ Replicas : config .Replicas ,
422
423
423
- PodMetadata : & monv1.EmbeddedObjectMetadata {
424
- Labels : podLabels ("prometheus" , ms .Name ),
425
- },
426
-
427
- // Prometheus does not use an Enum for LogLevel, so need to convert to string
428
- LogLevel : string (ms .Spec .LogLevel ),
429
-
430
- Retention : ms .Spec .Retention ,
431
- Resources : ms .Spec .Resources ,
424
+ PodMetadata : & monv1.EmbeddedObjectMetadata {
425
+ Labels : podLabels ("prometheus" , ms .Name ),
426
+ },
432
427
433
- ServiceAccountName : rbacResourceName ,
428
+ // Prometheus does not use an Enum for LogLevel, so need to convert to string
429
+ LogLevel : string (ms .Spec .LogLevel ),
430
+
431
+ Resources : ms .Spec .Resources ,
432
+
433
+ ServiceAccountName : rbacResourceName ,
434
+
435
+ ServiceMonitorSelector : prometheusSelector ,
436
+ ServiceMonitorNamespaceSelector : nil ,
437
+ PodMonitorSelector : prometheusSelector ,
438
+ PodMonitorNamespaceSelector : nil ,
439
+ Affinity : & corev1.Affinity {
440
+ PodAntiAffinity : & corev1.PodAntiAffinity {
441
+ RequiredDuringSchedulingIgnoredDuringExecution : []corev1.PodAffinityTerm {
442
+ {
443
+ TopologyKey : "kubernetes.io/hostname" ,
444
+ LabelSelector : & metav1.LabelSelector {
445
+ MatchLabels : podLabels ("prometheus" , ms .Name ),
446
+ },
447
+ },
448
+ },
449
+ },
450
+ },
434
451
435
- ServiceMonitorSelector : prometheusSelector ,
436
- ServiceMonitorNamespaceSelector : nil ,
437
- PodMonitorSelector : prometheusSelector ,
438
- PodMonitorNamespaceSelector : nil ,
439
- RuleSelector : prometheusSelector ,
440
- RuleNamespaceSelector : nil ,
452
+ // Prometheus should be configured for self-scraping through a static job.
453
+ // It avoids the need to synthesize a ServiceMonitor with labels that will match
454
+ // what the user defines in the monitoring stacks's resourceSelector field.
455
+ AdditionalScrapeConfigs : & corev1.SecretKeySelector {
456
+ LocalObjectReference : corev1.LocalObjectReference {
457
+ Name : additionalScrapeConfigsSecretName ,
458
+ },
459
+ Key : AdditionalScrapeConfigsSelfScrapeKey ,
460
+ },
461
+ Storage : storageForPVC (config .PersistentVolumeClaim ),
462
+ RemoteWrite : config .RemoteWrite ,
463
+ ExternalLabels : config .ExternalLabels ,
464
+ },
465
+ Retention : ms .Spec .Retention ,
466
+ RuleSelector : prometheusSelector ,
467
+ RuleNamespaceSelector : nil ,
441
468
442
469
Alerting : & monv1.AlertingSpec {
443
470
Alertmanagers : []monv1.AlertmanagerEndpoints {
@@ -450,35 +477,10 @@ func newPrometheus(
450
477
},
451
478
},
452
479
},
453
- Affinity : & corev1.Affinity {
454
- PodAntiAffinity : & corev1.PodAntiAffinity {
455
- RequiredDuringSchedulingIgnoredDuringExecution : []corev1.PodAffinityTerm {
456
- {
457
- TopologyKey : "kubernetes.io/hostname" ,
458
- LabelSelector : & metav1.LabelSelector {
459
- MatchLabels : podLabels ("prometheus" , ms .Name ),
460
- },
461
- },
462
- },
463
- },
464
- },
465
-
466
- // Prometheus should be configured for self-scraping through a static job.
467
- // It avoids the need to synthesize a ServiceMonitor with labels that will match
468
- // what the user defines in the monitoring stacks's resourceSelector field.
469
- AdditionalScrapeConfigs : & corev1.SecretKeySelector {
470
- LocalObjectReference : corev1.LocalObjectReference {
471
- Name : additionalScrapeConfigsSecretName ,
472
- },
473
- Key : AdditionalScrapeConfigsSelfScrapeKey ,
474
- },
475
480
Thanos : & monv1.ThanosSpec {
476
481
BaseImage : stringPtr ("quay.io/thanos/thanos" ),
477
482
Version : stringPtr ("v0.24.0" ),
478
483
},
479
- Storage : storageForPVC (config .PersistentVolumeClaim ),
480
- RemoteWrite : config .RemoteWrite ,
481
- ExternalLabels : config .ExternalLabels ,
482
484
},
483
485
}
484
486
0 commit comments