You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2019/03/26 09:35:33 UTC

[camel-k] 01/01: Release 0.3.2

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

lburgazzoli pushed a commit to tag 0.3.2
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit f00c1bfe44fd42039ea7de52cedd08f78adc3b13
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Tue Mar 26 10:35:22 2019 +0100

    Release 0.3.2
---
 assets/json-schema/Integration.json        | 30 +++++++++++++++---------------
 assets/json-schema/IntegrationContext.json | 30 +++++++++++++++---------------
 deploy/operator-deployment-kubernetes.yaml |  2 +-
 deploy/operator-deployment-openshift.yaml  |  2 +-
 deploy/resources.go                        |  4 ++--
 pkg/util/defaults/defaults.go              |  2 +-
 script/Makefile                            |  2 +-
 7 files changed, 36 insertions(+), 36 deletions(-)

diff --git a/assets/json-schema/Integration.json b/assets/json-schema/Integration.json
index 84caa98..a1ef8f0 100644
--- a/assets/json-schema/Integration.json
+++ b/assets/json-schema/Integration.json
@@ -229,7 +229,7 @@
           "patternProperties": {
             ".*": {
               "$schema": "http://json-schema.org/draft-04/schema#",
-              "$ref": "#/definitions/IntegrationTraitSpec"
+              "$ref": "#/definitions/TraitSpec"
             }
           },
           "type": "object"
@@ -278,20 +278,6 @@
       "additionalProperties": false,
       "type": "object"
     },
-    "IntegrationTraitSpec": {
-      "properties": {
-        "configuration": {
-          "patternProperties": {
-            ".*": {
-              "type": "string"
-            }
-          },
-          "type": "object"
-        }
-      },
-      "additionalProperties": false,
-      "type": "object"
-    },
     "OwnerReference": {
       "required": [
         "apiVersion",
@@ -456,6 +442,20 @@
     "Time": {
       "additionalProperties": false,
       "type": "object"
+    },
+    "TraitSpec": {
+      "properties": {
+        "configuration": {
+          "patternProperties": {
+            ".*": {
+              "type": "string"
+            }
+          },
+          "type": "object"
+        }
+      },
+      "additionalProperties": false,
+      "type": "object"
     }
   }
 }
\ No newline at end of file
diff --git a/assets/json-schema/IntegrationContext.json b/assets/json-schema/IntegrationContext.json
index 5a3cf87..f879529 100644
--- a/assets/json-schema/IntegrationContext.json
+++ b/assets/json-schema/IntegrationContext.json
@@ -227,7 +227,7 @@
           "patternProperties": {
             ".*": {
               "$schema": "http://json-schema.org/draft-04/schema#",
-              "$ref": "#/definitions/IntegrationTraitSpec"
+              "$ref": "#/definitions/TraitSpec"
             }
           },
           "type": "object"
@@ -274,20 +274,6 @@
       "additionalProperties": false,
       "type": "object"
     },
-    "IntegrationTraitSpec": {
-      "properties": {
-        "configuration": {
-          "patternProperties": {
-            ".*": {
-              "type": "string"
-            }
-          },
-          "type": "object"
-        }
-      },
-      "additionalProperties": false,
-      "type": "object"
-    },
     "OwnerReference": {
       "required": [
         "apiVersion",
@@ -401,6 +387,20 @@
     "Time": {
       "additionalProperties": false,
       "type": "object"
+    },
+    "TraitSpec": {
+      "properties": {
+        "configuration": {
+          "patternProperties": {
+            ".*": {
+              "type": "string"
+            }
+          },
+          "type": "object"
+        }
+      },
+      "additionalProperties": false,
+      "type": "object"
     }
   }
 }
\ No newline at end of file
diff --git a/deploy/operator-deployment-kubernetes.yaml b/deploy/operator-deployment-kubernetes.yaml
index 951a4a9..f7177bf 100644
--- a/deploy/operator-deployment-kubernetes.yaml
+++ b/deploy/operator-deployment-kubernetes.yaml
@@ -21,7 +21,7 @@ spec:
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:0.3.2-SNAPSHOT
+          image: docker.io/apache/camel-k:0.3.2
           command:
           - camel-k
           imagePullPolicy: IfNotPresent
diff --git a/deploy/operator-deployment-openshift.yaml b/deploy/operator-deployment-openshift.yaml
index cb5e131..eddfb0c 100644
--- a/deploy/operator-deployment-openshift.yaml
+++ b/deploy/operator-deployment-openshift.yaml
@@ -21,7 +21,7 @@ spec:
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:0.3.2-SNAPSHOT
+          image: docker.io/apache/camel-k:0.3.2
           command:
           - camel-k
           imagePullPolicy: IfNotPresent
diff --git a/deploy/resources.go b/deploy/resources.go
index dd9de02..ed3d11b 100644
--- a/deploy/resources.go
+++ b/deploy/resources.go
@@ -4365,7 +4365,7 @@ spec:
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:0.3.2-SNAPSHOT
+          image: docker.io/apache/camel-k:0.3.2
           command:
           - camel-k
           imagePullPolicy: IfNotPresent
@@ -4425,7 +4425,7 @@ spec:
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:0.3.2-SNAPSHOT
+          image: docker.io/apache/camel-k:0.3.2
           command:
           - camel-k
           imagePullPolicy: IfNotPresent
diff --git a/pkg/util/defaults/defaults.go b/pkg/util/defaults/defaults.go
index 8ffeef9..3af29bb 100644
--- a/pkg/util/defaults/defaults.go
+++ b/pkg/util/defaults/defaults.go
@@ -6,7 +6,7 @@ package defaults
 
 const (
 	// Version --
-	Version = "0.3.2-SNAPSHOT"
+	Version = "0.3.2"
 
 	// CamelVersionConstraint --
 	CamelVersionConstraint = "~2.23.x"
diff --git a/script/Makefile b/script/Makefile
index 30cb95b..6ad8dbc 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -1,5 +1,5 @@
 VERSIONFILE := pkg/util/defaults/defaults.go
-VERSION := 0.3.2-SNAPSHOT
+VERSION := 0.3.2
 RUNTIME_VERSION := 0.3.1
 CAMEL_VERSION := 2.23.1
 CAMEL_VERSION_CONSTRAINT := ~2.23.x