From 6b0ccf93df669daf82321e87e2e80be48881828f Mon Sep 17 00:00:00 2001 From: Antti Kervinen Date: Tue, 1 Oct 2024 15:53:04 +0300 Subject: [PATCH] Fix typos in expression code doc and matchExpression yamls Signed-off-by: Antti Kervinen --- config/crd/bases/config.nri_balloonspolicies.yaml | 4 ++-- .../helm/balloons/crds/config.nri_balloonspolicies.yaml | 4 ++-- pkg/apis/resmgr/v1alpha1/types.go | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config/crd/bases/config.nri_balloonspolicies.yaml b/config/crd/bases/config.nri_balloonspolicies.yaml index 6c522ddfa..c06a61721 100644 --- a/config/crd/bases/config.nri_balloonspolicies.yaml +++ b/config/crd/bases/config.nri_balloonspolicies.yaml @@ -114,7 +114,7 @@ spec: items: description: |- Expression describes some runtime-evaluated condition. An expression - consist of a key, an operator and a set of values. An expressions is + consists of a key, an operator and a set of values. An expression is evaluated against an object which implements the Evaluable interface. Evaluating an expression consists of looking up the value for the key in the object, then using the operator to check it against the values @@ -403,7 +403,7 @@ spec: items: description: |- Expression describes some runtime-evaluated condition. An expression - consist of a key, an operator and a set of values. An expressions is + consists of a key, an operator and a set of values. An expression is evaluated against an object which implements the Evaluable interface. Evaluating an expression consists of looking up the value for the key in the object, then using the operator to check it against the values diff --git a/deployment/helm/balloons/crds/config.nri_balloonspolicies.yaml b/deployment/helm/balloons/crds/config.nri_balloonspolicies.yaml index 6c522ddfa..c06a61721 100644 --- a/deployment/helm/balloons/crds/config.nri_balloonspolicies.yaml +++ b/deployment/helm/balloons/crds/config.nri_balloonspolicies.yaml @@ -114,7 +114,7 @@ spec: items: description: |- Expression describes some runtime-evaluated condition. An expression - consist of a key, an operator and a set of values. An expressions is + consists of a key, an operator and a set of values. An expression is evaluated against an object which implements the Evaluable interface. Evaluating an expression consists of looking up the value for the key in the object, then using the operator to check it against the values @@ -403,7 +403,7 @@ spec: items: description: |- Expression describes some runtime-evaluated condition. An expression - consist of a key, an operator and a set of values. An expressions is + consists of a key, an operator and a set of values. An expression is evaluated against an object which implements the Evaluable interface. Evaluating an expression consists of looking up the value for the key in the object, then using the operator to check it against the values diff --git a/pkg/apis/resmgr/v1alpha1/types.go b/pkg/apis/resmgr/v1alpha1/types.go index 6b4c280ae..bb2b5e96d 100644 --- a/pkg/apis/resmgr/v1alpha1/types.go +++ b/pkg/apis/resmgr/v1alpha1/types.go @@ -15,7 +15,7 @@ package resmgr // Expression describes some runtime-evaluated condition. An expression -// consist of a key, an operator and a set of values. An expressions is +// consists of a key, an operator and a set of values. An expression is // evaluated against an object which implements the Evaluable interface. // Evaluating an expression consists of looking up the value for the key // in the object, then using the operator to check it against the values