Skip to content

Commit 2afc0f5

Browse files
jbamptonsquakez
authored andcommitted
Fix spelling
1 parent 00c9395 commit 2afc0f5

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

docs/modules/ROOT/partials/apis/camel-k-crds.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2545,7 +2545,7 @@ the container image as identified in the container registry
25452545
|
25462546
25472547
2548-
a list of Camel dependecies used by this kit
2548+
a list of Camel dependencies used by this kit
25492549
25502550
|`profile` +
25512551
*xref:#_camel_apache_org_v1_TraitProfile[TraitProfile]*
@@ -6725,7 +6725,7 @@ require to be activated at specific hours of the day or with a periodic delay of
67256725
For such tasks, the cron trait can materialize the integration as a Kubernetes CronJob instead of a standard deployment,
67266726
in order to save resources when the integration does not need to be executed.
67276727
6728-
Integrations that start from the following components are evaluated by the cron trait: `timer`, `cron`, `quartz`. The trait does support multiple evaluated components only if they have the same schedule, else it will fallback to Camel implementation instead of instanciating a Kubernetes CronJob.
6728+
Integrations that start from the following components are evaluated by the cron trait: `timer`, `cron`, `quartz`. The trait does support multiple evaluated components only if they have the same schedule, else it will fallback to Camel implementation instead of instantiating a Kubernetes CronJob.
67296729
67306730
WARNING: In case of native build-mode defined in xref:traits:quarkus.adoc[quarkus] trait, the component can't be customized.
67316731
@@ -9081,4 +9081,4 @@ Legacy trait configuration parameters.
90819081
Deprecated: for backward compatibility.
90829082
90839083
9084-
|===
9084+
|===

docs/modules/traits/pages/cron.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require to be activated at specific hours of the day or with a periodic delay of
1010
For such tasks, the cron trait can materialize the integration as a Kubernetes CronJob instead of a standard deployment,
1111
in order to save resources when the integration does not need to be executed.
1212

13-
Integrations that start from the following components are evaluated by the cron trait: `timer`, `cron`, `quartz`. The trait does support multiple evaluated components only if they have the same schedule, else it will fallback to Camel implementation instead of instanciating a Kubernetes CronJob.
13+
Integrations that start from the following components are evaluated by the cron trait: `timer`, `cron`, `quartz`. The trait does support multiple evaluated components only if they have the same schedule, else it will fallback to Camel implementation instead of instantiating a Kubernetes CronJob.
1414

1515
WARNING: In case of native build-mode defined in xref:traits:quarkus.adoc[quarkus] trait, the component can't be customized.
1616

helm/camel-k/crds/camel-k-crds.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2784,7 +2784,7 @@ spec:
27842784
type: object
27852785
type: array
27862786
dependencies:
2787-
description: a list of Camel dependecies used by this kit
2787+
description: a list of Camel dependencies used by this kit
27882788
items:
27892789
type: string
27902790
type: array

pkg/apis/camel/v1/build_type_support_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ func TestMatchingBuildsSchedulingSameDependenciesSameRuntime(t *testing.T) {
414414
assert.Equal(t, buildA.Name, buildMatch.Name)
415415
}
416416

417-
func TestMatchingBuildsSchedulingMutipleSubsets(t *testing.T) {
417+
func TestMatchingBuildsSchedulingMultipleSubsets(t *testing.T) {
418418
timestamp, _ := time.Parse("2006-01-02T15:04:05-0700", "2024-08-09T10:00:00Z")
419419
creationTimestamp := v1.Time{Time: timestamp}
420420
buildA := Build{

pkg/apis/camel/v1/integrationkit_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ type IntegrationKit struct {
5757
type IntegrationKitSpec struct {
5858
// the container image as identified in the container registry
5959
Image string `json:"image,omitempty"`
60-
// a list of Camel dependecies used by this kit
60+
// a list of Camel dependencies used by this kit
6161
Dependencies []string `json:"dependencies,omitempty"`
6262
// the profile which is expected by this kit
6363
Profile TraitProfile `json:"profile,omitempty"`

pkg/apis/camel/v1/trait/cron.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ package trait
2424
// For such tasks, the cron trait can materialize the integration as a Kubernetes CronJob instead of a standard deployment,
2525
// in order to save resources when the integration does not need to be executed.
2626
//
27-
// Integrations that start from the following components are evaluated by the cron trait: `timer`, `cron`, `quartz`. The trait does support multiple evaluated components only if they have the same schedule, else it will fallback to Camel implementation instead of instanciating a Kubernetes CronJob.
27+
// Integrations that start from the following components are evaluated by the cron trait: `timer`, `cron`, `quartz`. The trait does support multiple evaluated components only if they have the same schedule, else it will fallback to Camel implementation instead of instantiating a Kubernetes CronJob.
2828
//
2929
// WARNING: In case of native build-mode defined in xref:traits:quarkus.adoc[quarkus] trait, the component can't be customized.
3030
//

pkg/resources/config/crd/bases/camel.apache.org_integrationkits.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ spec:
121121
type: object
122122
type: array
123123
dependencies:
124-
description: a list of Camel dependecies used by this kit
124+
description: a list of Camel dependencies used by this kit
125125
items:
126126
type: string
127127
type: array

pkg/trait/cron_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ func TestCronMultipleScheduleFallback(t *testing.T) {
379379

380380
ct, _ := environment.GetTrait("cron").(*cronTrait)
381381
assert.NotNil(t, ct)
382-
assert.NotNil(t, ct.Fallback, "Should apply Fallback since non equivalent scheduling for mutiple cron compatible component")
382+
assert.NotNil(t, ct.Fallback, "Should apply Fallback since non equivalent scheduling for multiple cron compatible component")
383383
}
384384

385385
func TestCronDepsFallback(t *testing.T) {

script/offline_dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ pom_min=${offline_dir}/pom-min.xml
7979
camelk_mvn_ver=$(curl -s https://raw.githubusercontent.com/apache/camel-k/release-2.3.x/build/Dockerfile|grep MAVEN_DEFAULT_VERSION= |cut -d\" -f2)
8080
# get the maven version set by the user from the parameters
8181
mvn_ver=$($mvnCmd --version |grep "Apache Maven"|awk '{print $3}')
82-
# the maven version executing the task MUST be exactly the same versin as set by the camel-k-operator
82+
# the maven version executing the task MUST be exactly the same version as set by the camel-k-operator
8383
if [ "${camelk_mvn_ver}" != "${mvn_ver}" ]; then
8484
# if the maven version is different, download the correct maven version
8585
url="https://archive.apache.org/dist/maven/maven-3/${camelk_mvn_ver}/binaries/apache-maven-${camelk_mvn_ver}-bin.tar.gz"

0 commit comments

Comments
 (0)