Skip to content

Commit 463a9cc

Browse files
authored
Merge pull request #8665 from xiaocheng139/fix-vpa-comment-typo
Fixed the vpa api comment typo
2 parents 439ef8b + ec32e39 commit 463a9cc

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

vertical-pod-autoscaler/charts/vertical-pod-autoscaler/crds/vpa-v1-crd-gen.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ spec:
7676
type: number
7777
type: object
7878
firstSampleStart:
79-
description: Timestamp of the fist sample from the histograms.
79+
description: Timestamp of the first sample from the histograms.
8080
format: date-time
8181
nullable: true
8282
type: string
@@ -177,7 +177,7 @@ spec:
177177
type: number
178178
type: object
179179
firstSampleStart:
180-
description: Timestamp of the fist sample from the histograms.
180+
description: Timestamp of the first sample from the histograms.
181181
format: date-time
182182
nullable: true
183183
type: string

vertical-pod-autoscaler/deploy/vpa-v1-crd-gen.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ spec:
7676
type: number
7777
type: object
7878
firstSampleStart:
79-
description: Timestamp of the fist sample from the histograms.
79+
description: Timestamp of the first sample from the histograms.
8080
format: date-time
8181
nullable: true
8282
type: string
@@ -177,7 +177,7 @@ spec:
177177
type: number
178178
type: object
179179
firstSampleStart:
180-
description: Timestamp of the fist sample from the histograms.
180+
description: Timestamp of the first sample from the histograms.
181181
format: date-time
182182
nullable: true
183183
type: string

vertical-pod-autoscaler/docs/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ _Appears in:_
301301
| `version` _string_ | Version of the format of the stored data. | | |
302302
| `cpuHistogram` _[HistogramCheckpoint](#histogramcheckpoint)_ | Checkpoint of histogram for consumption of CPU. | | |
303303
| `memoryHistogram` _[HistogramCheckpoint](#histogramcheckpoint)_ | Checkpoint of histogram for consumption of memory. | | |
304-
| `firstSampleStart` _[Time](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.32/#time-v1-meta)_ | Timestamp of the fist sample from the histograms. | | |
304+
| `firstSampleStart` _[Time](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.32/#time-v1-meta)_ | Timestamp of the first sample from the histograms. | | |
305305
| `lastSampleStart` _[Time](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.32/#time-v1-meta)_ | Timestamp of the last sample from the histograms. | | |
306306
| `totalSamplesCount` _integer_ | Total number of samples in the histograms. | | |
307307

vertical-pod-autoscaler/pkg/apis/autoscaling.k8s.io/v1/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ type VerticalPodAutoscalerCheckpointStatus struct {
408408
// Checkpoint of histogram for consumption of memory.
409409
MemoryHistogram HistogramCheckpoint `json:"memoryHistogram,omitempty" protobuf:"bytes,4,rep,name=memoryHistogram"`
410410

411-
// Timestamp of the fist sample from the histograms.
411+
// Timestamp of the first sample from the histograms.
412412
// +nullable
413413
FirstSampleStart metav1.Time `json:"firstSampleStart,omitempty" protobuf:"bytes,5,opt,name=firstSampleStart"`
414414

vertical-pod-autoscaler/pkg/apis/autoscaling.k8s.io/v1beta1/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ type VerticalPodAutoscalerCheckpointStatus struct {
299299
// Checkpoint of histogram for consumption of memory.
300300
MemoryHistogram HistogramCheckpoint `json:"memoryHistogram,omitempty" protobuf:"bytes,4,rep,name=memoryHistogram"`
301301

302-
// Timestamp of the fist sample from the histograms.
302+
// Timestamp of the first sample from the histograms.
303303
FirstSampleStart metav1.Time `json:"firstSampleStart,omitempty" protobuf:"bytes,5,opt,name=firstSampleStart"`
304304

305305
// Timestamp of the last sample from the histograms.

vertical-pod-autoscaler/pkg/apis/autoscaling.k8s.io/v1beta2/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ type VerticalPodAutoscalerCheckpointStatus struct {
327327
// Checkpoint of histogram for consumption of memory.
328328
MemoryHistogram HistogramCheckpoint `json:"memoryHistogram,omitempty" protobuf:"bytes,4,rep,name=memoryHistogram"`
329329

330-
// Timestamp of the fist sample from the histograms.
330+
// Timestamp of the first sample from the histograms.
331331
// +nullable
332332
FirstSampleStart metav1.Time `json:"firstSampleStart,omitempty" protobuf:"bytes,5,opt,name=firstSampleStart"`
333333

vertical-pod-autoscaler/pkg/apis/poc.autoscaling.k8s.io/v1alpha1/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ type VerticalPodAutoscalerCheckpointStatus struct {
290290
// Checkpoint of histogram for consumption of memory.
291291
MemoryHistogram HistogramCheckpoint `json:"memoryHistogram,omitempty" protobuf:"bytes,4,rep,name=memoryHistogram"`
292292

293-
// Timestamp of the fist sample from the histograms.
293+
// Timestamp of the first sample from the histograms.
294294
FirstSampleStart metav1.Time `json:"firstSampleStart,omitempty" protobuf:"bytes,5,opt,name=firstSampleStart"`
295295

296296
// Timestamp of the last sample from the histograms.

0 commit comments

Comments
 (0)