This is an automated email from the ASF dual-hosted git repository.

djencks pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 1a86216db4ab98b9ae39fa64c40158736b908131
Author: David Jencks <djen...@apache.org>
AuthorDate: Wed Jan 19 16:40:26 2022 -0800

    fix apparent typos in jsonschema_types.go
    
    propagate typo fixes to generated yaml
---
 config/crd/bases/camel.apache.org_kameletbindings.yaml | 12 ++++++------
 config/crd/bases/camel.apache.org_kamelets.yaml        |  8 ++++----
 helm/camel-k/crds/crd-kamelet-binding.yaml             | 12 ++++++------
 helm/camel-k/crds/crd-kamelet.yaml                     |  8 ++++----
 pkg/apis/camel/v1alpha1/jsonschema_types.go            |  4 ++--
 5 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/config/crd/bases/camel.apache.org_kameletbindings.yaml 
b/config/crd/bases/camel.apache.org_kameletbindings.yaml
index 0891d1f..da6e75c 100644
--- a/config/crd/bases/camel.apache.org_kameletbindings.yaml
+++ b/config/crd/bases/camel.apache.org_kameletbindings.yaml
@@ -5793,10 +5793,10 @@ spec:
                                       with any non digit characters mixed in - 
ssn:
                                       a U.S. social security number following 
the
                                       regex ^\\\\d{3}[- ]?\\\\d{2}[- 
]?\\\\d{4}$ -
-                                      hexcolor: an hexadecimal color code like 
\"#FFFFFF:
+                                      hexcolor: an hexadecimal color code like 
\"#FFFFFF\"
                                       following the regex 
^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
                                       - rgbcolor: an RGB color code like rgb 
like
-                                      \"rgb(255,255,2559\" - byte: base64 
encoded
+                                      \"rgb(255,255,255)\" - byte: base64 
encoded
                                       binary data - password: any kind of 
string -
                                       date: a date string like \"2006-01-02\" 
as defined
                                       by full-date in RFC3339 - duration: a 
duration
@@ -6008,10 +6008,10 @@ spec:
                                       with any non digit characters mixed in - 
ssn:
                                       a U.S. social security number following 
the
                                       regex ^\\\\d{3}[- ]?\\\\d{2}[- 
]?\\\\d{4}$ -
-                                      hexcolor: an hexadecimal color code like 
\"#FFFFFF:
+                                      hexcolor: an hexadecimal color code like 
\"#FFFFFF\"
                                       following the regex 
^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
                                       - rgbcolor: an RGB color code like rgb 
like
-                                      \"rgb(255,255,2559\" - byte: base64 
encoded
+                                      \"rgb(255,255,255)\" - byte: base64 
encoded
                                       binary data - password: any kind of 
string -
                                       date: a date string like \"2006-01-02\" 
as defined
                                       by full-date in RFC3339 - duration: a 
duration
@@ -6228,9 +6228,9 @@ spec:
                                         a U.S. social security number 
following the
                                         regex ^\\\\d{3}[- ]?\\\\d{2}[- 
]?\\\\d{4}$
                                         - hexcolor: an hexadecimal color code 
like
-                                        \"#FFFFFF: following the regex 
^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
+                                        \"#FFFFFF\" following the regex 
^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
                                         - rgbcolor: an RGB color code like rgb 
like
-                                        \"rgb(255,255,2559\" - byte: base64 
encoded
+                                        \"rgb(255,255,255)\" - byte: base64 
encoded
                                         binary data - password: any kind of 
string
                                         - date: a date string like 
\"2006-01-02\"
                                         as defined by full-date in RFC3339 - 
duration:
diff --git a/config/crd/bases/camel.apache.org_kamelets.yaml 
b/config/crd/bases/camel.apache.org_kamelets.yaml
index dada3b0..09410dd 100644
--- a/config/crd/bases/camel.apache.org_kamelets.yaml
+++ b/config/crd/bases/camel.apache.org_kamelets.yaml
@@ -143,8 +143,8 @@ spec:
                             with any non digit characters mixed in - ssn: a 
U.S. social
                             security number following the regex ^\\\\d{3}[- 
]?\\\\d{2}[-
                             ]?\\\\d{4}$ - hexcolor: an hexadecimal color code 
like
-                            \"#FFFFFF: following the regex 
^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
-                            - rgbcolor: an RGB color code like rgb like 
\"rgb(255,255,2559\"
+                            \"#FFFFFF\" following the regex 
^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
+                            - rgbcolor: an RGB color code like rgb like 
\"rgb(255,255,255)\"
                             - byte: base64 encoded binary data - password: any 
kind
                             of string - date: a date string like 
\"2006-01-02\" as
                             defined by full-date in RFC3339 - duration: a 
duration
@@ -354,9 +354,9 @@ spec:
                                   with any non digit characters mixed in - 
ssn: a
                                   U.S. social security number following the 
regex
                                   ^\\\\d{3}[- ]?\\\\d{2}[- ]?\\\\d{4}$ - 
hexcolor:
-                                  an hexadecimal color code like \"#FFFFFF: 
following
+                                  an hexadecimal color code like \"#FFFFFF\" 
following
                                   the regex 
^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ -
-                                  rgbcolor: an RGB color code like rgb like 
\"rgb(255,255,2559\"
+                                  rgbcolor: an RGB color code like rgb like 
\"rgb(255,255,255)\"
                                   - byte: base64 encoded binary data - 
password: any
                                   kind of string - date: a date string like 
\"2006-01-02\"
                                   as defined by full-date in RFC3339 - 
duration: a
diff --git a/helm/camel-k/crds/crd-kamelet-binding.yaml 
b/helm/camel-k/crds/crd-kamelet-binding.yaml
index 0891d1f..da6e75c 100644
--- a/helm/camel-k/crds/crd-kamelet-binding.yaml
+++ b/helm/camel-k/crds/crd-kamelet-binding.yaml
@@ -5793,10 +5793,10 @@ spec:
                                       with any non digit characters mixed in - 
ssn:
                                       a U.S. social security number following 
the
                                       regex ^\\\\d{3}[- ]?\\\\d{2}[- 
]?\\\\d{4}$ -
-                                      hexcolor: an hexadecimal color code like 
\"#FFFFFF:
+                                      hexcolor: an hexadecimal color code like 
\"#FFFFFF\"
                                       following the regex 
^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
                                       - rgbcolor: an RGB color code like rgb 
like
-                                      \"rgb(255,255,2559\" - byte: base64 
encoded
+                                      \"rgb(255,255,255)\" - byte: base64 
encoded
                                       binary data - password: any kind of 
string -
                                       date: a date string like \"2006-01-02\" 
as defined
                                       by full-date in RFC3339 - duration: a 
duration
@@ -6008,10 +6008,10 @@ spec:
                                       with any non digit characters mixed in - 
ssn:
                                       a U.S. social security number following 
the
                                       regex ^\\\\d{3}[- ]?\\\\d{2}[- 
]?\\\\d{4}$ -
-                                      hexcolor: an hexadecimal color code like 
\"#FFFFFF:
+                                      hexcolor: an hexadecimal color code like 
\"#FFFFFF\"
                                       following the regex 
^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
                                       - rgbcolor: an RGB color code like rgb 
like
-                                      \"rgb(255,255,2559\" - byte: base64 
encoded
+                                      \"rgb(255,255,255)\" - byte: base64 
encoded
                                       binary data - password: any kind of 
string -
                                       date: a date string like \"2006-01-02\" 
as defined
                                       by full-date in RFC3339 - duration: a 
duration
@@ -6228,9 +6228,9 @@ spec:
                                         a U.S. social security number 
following the
                                         regex ^\\\\d{3}[- ]?\\\\d{2}[- 
]?\\\\d{4}$
                                         - hexcolor: an hexadecimal color code 
like
-                                        \"#FFFFFF: following the regex 
^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
+                                        \"#FFFFFF\" following the regex 
^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
                                         - rgbcolor: an RGB color code like rgb 
like
-                                        \"rgb(255,255,2559\" - byte: base64 
encoded
+                                        \"rgb(255,255,255)\" - byte: base64 
encoded
                                         binary data - password: any kind of 
string
                                         - date: a date string like 
\"2006-01-02\"
                                         as defined by full-date in RFC3339 - 
duration:
diff --git a/helm/camel-k/crds/crd-kamelet.yaml 
b/helm/camel-k/crds/crd-kamelet.yaml
index dada3b0..09410dd 100644
--- a/helm/camel-k/crds/crd-kamelet.yaml
+++ b/helm/camel-k/crds/crd-kamelet.yaml
@@ -143,8 +143,8 @@ spec:
                             with any non digit characters mixed in - ssn: a 
U.S. social
                             security number following the regex ^\\\\d{3}[- 
]?\\\\d{2}[-
                             ]?\\\\d{4}$ - hexcolor: an hexadecimal color code 
like
-                            \"#FFFFFF: following the regex 
^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
-                            - rgbcolor: an RGB color code like rgb like 
\"rgb(255,255,2559\"
+                            \"#FFFFFF\" following the regex 
^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
+                            - rgbcolor: an RGB color code like rgb like 
\"rgb(255,255,255)\"
                             - byte: base64 encoded binary data - password: any 
kind
                             of string - date: a date string like 
\"2006-01-02\" as
                             defined by full-date in RFC3339 - duration: a 
duration
@@ -354,9 +354,9 @@ spec:
                                   with any non digit characters mixed in - 
ssn: a
                                   U.S. social security number following the 
regex
                                   ^\\\\d{3}[- ]?\\\\d{2}[- ]?\\\\d{4}$ - 
hexcolor:
-                                  an hexadecimal color code like \"#FFFFFF: 
following
+                                  an hexadecimal color code like \"#FFFFFF\" 
following
                                   the regex 
^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ -
-                                  rgbcolor: an RGB color code like rgb like 
\"rgb(255,255,2559\"
+                                  rgbcolor: an RGB color code like rgb like 
\"rgb(255,255,255)\"
                                   - byte: base64 encoded binary data - 
password: any
                                   kind of string - date: a date string like 
\"2006-01-02\"
                                   as defined by full-date in RFC3339 - 
duration: a
diff --git a/pkg/apis/camel/v1alpha1/jsonschema_types.go 
b/pkg/apis/camel/v1alpha1/jsonschema_types.go
index a93e557..620128a 100644
--- a/pkg/apis/camel/v1alpha1/jsonschema_types.go
+++ b/pkg/apis/camel/v1alpha1/jsonschema_types.go
@@ -47,8 +47,8 @@ type JSONSchemaProp struct {
        // - isbn13: an ISBN13 number string like "978-0321751041"
        // - creditcard: a credit card number defined by the regex 
^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$
 with any non digit characters mixed in
        // - ssn: a U.S. social security number following the regex ^\\d{3}[- 
]?\\d{2}[- ]?\\d{4}$
-       // - hexcolor: an hexadecimal color code like "#FFFFFF: following the 
regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
-       // - rgbcolor: an RGB color code like rgb like "rgb(255,255,2559"
+       // - hexcolor: an hexadecimal color code like "#FFFFFF" following the 
regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
+       // - rgbcolor: an RGB color code like rgb like "rgb(255,255,255)"
        // - byte: base64 encoded binary data
        // - password: any kind of string
        // - date: a date string like "2006-01-02" as defined by full-date in 
RFC3339

Reply via email to