Skip to content

Commit c3c15eb

Browse files
committed
fix: adjust usage of PrometheusSpec type
Problem: Embedded structs can as of yet not be directly referenced in struct literals. Solution: Explicitly use the embedded structs. Issues: golang/go#9859, prometheus-operator/prometheus-operator#4539 Signed-off-by: Jan Fajerski <[email protected]>
1 parent 7ea8c5d commit c3c15eb

File tree

2 files changed

+49
-45
lines changed

2 files changed

+49
-45
lines changed

pkg/controllers/monitoring-stack/components.go

+44-42
Original file line numberDiff line numberDiff line change
@@ -418,26 +418,53 @@ func newPrometheus(
418418
},
419419

420420
Spec: monv1.PrometheusSpec{
421-
Replicas: config.Replicas,
421+
CommonPrometheusFields: monv1.CommonPrometheusFields{
422+
Replicas: config.Replicas,
422423

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+
},
432427

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+
},
434451

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,
441468

442469
Alerting: &monv1.AlertingSpec{
443470
Alertmanagers: []monv1.AlertmanagerEndpoints{
@@ -450,35 +477,10 @@ func newPrometheus(
450477
},
451478
},
452479
},
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-
},
475480
Thanos: &monv1.ThanosSpec{
476481
BaseImage: stringPtr("quay.io/thanos/thanos"),
477482
Version: stringPtr("v0.24.0"),
478483
},
479-
Storage: storageForPVC(config.PersistentVolumeClaim),
480-
RemoteWrite: config.RemoteWrite,
481-
ExternalLabels: config.ExternalLabels,
482484
},
483485
}
484486

test/e2e/monitoring_stack_controller_test.go

+5-3
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,11 @@ func reconcileStack(t *testing.T) {
170170
f.GetResourceWithRetry(t, ms.Name, ms.Namespace, &generated)
171171

172172
expected := monv1.PrometheusSpec{
173-
LogLevel: string(ms.Spec.LogLevel),
174-
Retention: ms.Spec.Retention,
175-
ServiceMonitorSelector: ms.Spec.ResourceSelector.DeepCopy(),
173+
Retention: ms.Spec.Retention,
174+
CommonPrometheusFields: monv1.CommonPrometheusFields{
175+
LogLevel: string(ms.Spec.LogLevel),
176+
ServiceMonitorSelector: ms.Spec.ResourceSelector.DeepCopy(),
177+
},
176178
}
177179

178180
assert.DeepEqual(t, expected.ServiceMonitorSelector, generated.Spec.ServiceMonitorSelector)

0 commit comments

Comments
 (0)