Skip to content

Commit 2de8978

Browse files
authored
Fix typo in traefik entryPoints json field (#114)
1 parent d102004 commit 2de8978

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

api/v1/qdrantcluster_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ type TraefikConfig struct {
731731
AllowedSourceRanges []string `json:"allowedSourceRanges,omitempty"`
732732
// EntryPoints is the list of traefik entry points to use for the ingress route.
733733
// If nothing is set, it will take the entryPoints configured in the operator config.
734-
EntryPoints []string `json:"entryPoint,omitempty"`
734+
EntryPoints []string `json:"entryPoints,omitempty"`
735735
}
736736

737737
func (c *TraefikConfig) GetAllowedSourceRanges() []string {

charts/qdrant-kubernetes-api/templates/region-crds/qdrant.io_qdrantclusters.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ spec:
436436
items:
437437
type: string
438438
type: array
439-
entryPoint:
439+
entryPoints:
440440
description: |-
441441
EntryPoints is the list of traefik entry points to use for the ingress route.
442442
If nothing is set, it will take the entryPoints configured in the operator config.

crds/qdrant.io_qdrantclusters.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ spec:
435435
items:
436436
type: string
437437
type: array
438-
entryPoint:
438+
entryPoints:
439439
description: |-
440440
EntryPoints is the list of traefik entry points to use for the ingress route.
441441
If nothing is set, it will take the entryPoints configured in the operator config.

docs/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1248,7 +1248,7 @@ _Appears in:_
12481248
| Field | Description | Default | Validation |
12491249
| --- | --- | --- | --- |
12501250
| `allowedSourceRanges` _string array_ | AllowedSourceRanges specifies the allowed CIDR source ranges for the ingress. | | |
1251-
| `entryPoint` _string array_ | EntryPoints is the list of traefik entry points to use for the ingress route.<br />If nothing is set, it will take the entryPoints configured in the operator config. | | |
1251+
| `entryPoints` _string array_ | EntryPoints is the list of traefik entry points to use for the ingress route.<br />If nothing is set, it will take the entryPoints configured in the operator config. | | |
12521252

12531253

12541254
#### VolumeSnapshotClass

0 commit comments

Comments
 (0)