Skip to content

Commit ab6caae

Browse files
programmer04pmalek
andauthored
chore: fix typos and improve logs (#3201)
Co-authored-by: Patryk Małek <patryk.malek@konghq.com>
1 parent 1e2b6af commit ab6caae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+102
-101
lines changed

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
Secrets containing TLS certificate and key data, instead of embedding them inline.
111111
[#2802](https://github.com/Kong/kong-operator/pull/2802)
112112
- `KongCACertificate`: Add support for sourcing CA certificates from Kubernetes Secrets.
113-
This allows users to define KongCACertificates that references exsiting Kubernetes
113+
This allows users to define KongCACertificates that references existing Kubernetes
114114
Secrets containing TLS CA certificate instead of embedding them inline
115115
[#2482](https://github.com/Kong/kong-operator/pull/2842)
116116
- `KongReferenceGrant` CRD has been added to allow cross-namespace references
@@ -119,7 +119,7 @@
119119
[#2855](https://github.com/Kong/kong-operator/pull/2855)
120120
- Hybrid Gateway: specify the protocol field of the generated `KongService` resources
121121
[#2872](https://github.com/Kong/kong-operator/pull/2872)
122-
- Hybdrid Gateway: the creation and deletion of the Kong resources derived from `HTTPRoute`s is now
122+
- Hybrid Gateway: the creation and deletion of the Kong resources derived from `HTTPRoute`s is now
123123
performed in multiple steps that account for dependencies among the generated resources.
124124
[#2857](https://github.com/Kong/kong-operator/pull/2857)
125125
- Added support for cross namespace references between the following Konnect
@@ -325,7 +325,7 @@
325325
[#2427](https://github.com/Kong/kong-operator/pull/2427)
326326
- Hybrid Gateway: attach KongService generation to BackendRefs and fix filter/plugin conversion.
327327
[#2456](https://github.com/Kong/kong-operator/pull/2456)
328-
- Translate `healtchchecks.threshold` in `KongUpstreamPolicy` to the
328+
- Translate `healthchecks.threshold` in `KongUpstreamPolicy` to the
329329
`healthchecks.threshold` field in Kong upstreams.
330330
[#2662](https://github.com/Kong/kong-operator/pull/2662)
331331
- Reject CA Secrets with multiple PEM certs.
@@ -920,7 +920,7 @@
920920
[#898](https://github.com/kong/kong-operator/pull/898)
921921
- Set 0 members on `KonnectGatewayControlPlane` which type is set to group.
922922
[#896](https://github.com/kong/kong-operator/pull/896)
923-
- Fixed a `panic` in `KonnectAPIAuthConfigurationReconciler` occuring when nil
923+
- Fixed a `panic` in `KonnectAPIAuthConfigurationReconciler` occurring when nil
924924
response was returned by Konnect API when fetching the organization information.
925925
[#901](https://github.com/kong/kong-operator/pull/901)
926926
- Bump sdk-konnect-go version to 0.1.10 to fix handling global API endpoints.
@@ -1004,7 +1004,7 @@
10041004
- ACL [#661](https://github.com/kong/kong-operator/pull/661)
10051005
- JWT [#678](https://github.com/kong/kong-operator/pull/678)
10061006
- HMAC Auth [#687](https://github.com/kong/kong-operator/pull/687)
1007-
- Add support for `KongRoute`s bound directly to `KonnectGatewayControlPlane`s (serviceless rotues).
1007+
- Add support for `KongRoute`s bound directly to `KonnectGatewayControlPlane`s (serviceless routes).
10081008
[#669](https://github.com/kong/kong-operator/pull/669)
10091009
- Allow setting `KonnectGatewayControlPlane`s group membership
10101010
[#697](https://github.com/kong/kong-operator/pull/697)
@@ -1459,7 +1459,7 @@ Due to [golang proxy caching modules indefinitely][goproxy] we needed to retract
14591459
[kong/kong-operator-archive#1034](https://github.com/kong/kong-operator-archive/pull/1034)
14601460
- Don't use `Provisioned` status condition type on `DataPlane`s.
14611461
From now on `DataPlane`s are only expressing their status through `Ready` status
1462-
condtion.
1462+
condition.
14631463
[kong/kong-operator-archive#1043](https://github.com/kong/kong-operator-archive/pull/1043)
14641464
- Bump default `DataPlane` image to 3.4
14651465
[kong/kong-operator-archive#1067](https://github.com/kong/kong-operator-archive/pull/1067)

api/configuration/v1alpha1/kongpluginbinding_types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ type KongPluginBindingSpec struct {
117117
// KongPluginBindingTargets contains the targets references.
118118
// +apireference:kgo:include
119119
type KongPluginBindingTargets struct {
120-
// RouteReference can be used to reference one of the following resouces:
120+
// RouteReference can be used to reference one of the following resources:
121121
// - networking.k8s.io/Ingress
122122
// - gateway.networking.k8s.io/HTTPRoute
123123
// - gateway.networking.k8s.io/GRPCRoute
@@ -127,7 +127,7 @@ type KongPluginBindingTargets struct {
127127
// +kubebuilder:validation:XValidation:message="group/kind not allowed for the routeRef",rule="(self.kind == 'KongRoute' && self.group == 'configuration.konghq.com') || (self.kind == 'Ingress' && self.group == 'networking.k8s.io') || (self.kind == 'HTTPRoute' && self.group == 'gateway.networking.k8s.io') || (self.kind == 'GRPCRoute' && self.group == 'gateway.networking.k8s.io')"
128128
RouteReference *TargetRefWithGroupKind `json:"routeRef,omitempty"`
129129

130-
// ServiceReference can be used to reference one of the following resouces:
130+
// ServiceReference can be used to reference one of the following resources:
131131
// - core/Service or /Service
132132
// - configuration.konghq.com/KongService
133133
//

charts/kong-operator/charts/ko-crds/templates/ko-crds.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53772,7 +53772,7 @@ spec:
5377253772
type: object
5377353773
routeRef:
5377453774
description: |-
53775-
RouteReference can be used to reference one of the following resouces:
53775+
RouteReference can be used to reference one of the following resources:
5377653776
- networking.k8s.io/Ingress
5377753777
- gateway.networking.k8s.io/HTTPRoute
5377853778
- gateway.networking.k8s.io/GRPCRoute
@@ -53811,7 +53811,7 @@ spec:
5381153811
|| (self.kind == 'GRPCRoute' && self.group == 'gateway.networking.k8s.io')
5381253812
serviceRef:
5381353813
description: |-
53814-
ServiceReference can be used to reference one of the following resouces:
53814+
ServiceReference can be used to reference one of the following resources:
5381553815
- core/Service or /Service
5381653816
- configuration.konghq.com/KongService
5381753817
properties:

charts/kong-operator/ci/__snapshots__/affinity-values.snap

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/kong-operator/ci/__snapshots__/controlplane-config-dump.snap

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/kong-operator/ci/__snapshots__/disable-gateway-controller-values.snap

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/kong-operator/ci/__snapshots__/env-and-args-values.snap

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/kong-operator/ci/__snapshots__/env-and-customenv-values.snap

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/kong-operator/ci/__snapshots__/extra-labels-values.snap

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/kong-operator/ci/__snapshots__/image-pull-secrets-and-image-digest-values.snap

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)