From 480c1d2444acef2d93d5815f91399138d54dd3f1 Mon Sep 17 00:00:00 2001 From: Nate Gay Date: Thu, 21 May 2026 10:25:23 -0500 Subject: [PATCH] docs: correct spelling of Kubernetes --- .../crds/monitoring.googleapis.com_clusterpodmonitorings.yaml | 2 +- .../crds/monitoring.googleapis.com_podmonitorings.yaml | 2 +- manifests/setup.yaml | 4 ++-- pkg/operator/apis/monitoring/v1alpha1/types.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/operator/crds/monitoring.googleapis.com_clusterpodmonitorings.yaml b/charts/operator/crds/monitoring.googleapis.com_clusterpodmonitorings.yaml index a5c4167556..a1f4bae976 100644 --- a/charts/operator/crds/monitoring.googleapis.com_clusterpodmonitorings.yaml +++ b/charts/operator/crds/monitoring.googleapis.com_clusterpodmonitorings.yaml @@ -1035,7 +1035,7 @@ spec: onto a Prometheus target. properties: from: - description: Kubenetes resource label to remap. + description: Kubernetes resource label to remap. type: string to: description: |- diff --git a/charts/operator/crds/monitoring.googleapis.com_podmonitorings.yaml b/charts/operator/crds/monitoring.googleapis.com_podmonitorings.yaml index d7d8d0de00..60d8711944 100644 --- a/charts/operator/crds/monitoring.googleapis.com_podmonitorings.yaml +++ b/charts/operator/crds/monitoring.googleapis.com_podmonitorings.yaml @@ -1053,7 +1053,7 @@ spec: onto a Prometheus target. properties: from: - description: Kubenetes resource label to remap. + description: Kubernetes resource label to remap. type: string to: description: |- diff --git a/manifests/setup.yaml b/manifests/setup.yaml index 498588e261..ed34540c5c 100644 --- a/manifests/setup.yaml +++ b/manifests/setup.yaml @@ -1241,7 +1241,7 @@ spec: onto a Prometheus target. properties: from: - description: Kubenetes resource label to remap. + description: Kubernetes resource label to remap. type: string to: description: |- @@ -3641,7 +3641,7 @@ spec: onto a Prometheus target. properties: from: - description: Kubenetes resource label to remap. + description: Kubernetes resource label to remap. type: string to: description: |- diff --git a/pkg/operator/apis/monitoring/v1alpha1/types.go b/pkg/operator/apis/monitoring/v1alpha1/types.go index b44fce6a9d..ca4dd34b8a 100644 --- a/pkg/operator/apis/monitoring/v1alpha1/types.go +++ b/pkg/operator/apis/monitoring/v1alpha1/types.go @@ -291,7 +291,7 @@ type TargetLabels struct { // LabelMapping specifies how to transfer a label from a Kubernetes resource // onto a Prometheus target. type LabelMapping struct { - // Kubenetes resource label to remap. + // Kubernetes resource label to remap. From string `json:"from"` // Remapped Prometheus target label. // Defaults to the same name as `From`.