You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2019/03/15 16:57:19 UTC

[camel-k] tag 0.3.1 created (now b60898b)

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

nferraro pushed a change to tag 0.3.1
in repository https://gitbox.apache.org/repos/asf/camel-k.git.


      at b60898b  (commit)
This tag includes the following new commits:

     new b60898b  Release 0.3.1

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel-k] 01/01: Release 0.3.1

Posted by nf...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit b60898b41e3082d051cb6167f77fc6d00bc888f2
Author: nferraro <ni...@gmail.com>
AuthorDate: Fri Mar 15 17:57:11 2019 +0100

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

diff --git a/assets/json-schema/Integration.json b/assets/json-schema/Integration.json
index 8743c7e..84caa98 100644
--- a/assets/json-schema/Integration.json
+++ b/assets/json-schema/Integration.json
@@ -330,9 +330,15 @@
         "content": {
           "type": "string"
         },
+        "contentKey": {
+          "type": "string"
+        },
         "contentRef": {
           "type": "string"
         },
+        "mountPath": {
+          "type": "string"
+        },
         "name": {
           "type": "string"
         },
@@ -351,6 +357,9 @@
         "content": {
           "type": "string"
         },
+        "contentKey": {
+          "type": "string"
+        },
         "contentRef": {
           "type": "string"
         },
diff --git a/deploy/operator-deployment-kubernetes.yaml b/deploy/operator-deployment-kubernetes.yaml
index 710a59d..b2436ef 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.1-SNAPSHOT
+          image: docker.io/apache/camel-k:0.3.1
           command:
           - camel-k
           imagePullPolicy: IfNotPresent
diff --git a/deploy/operator-deployment-openshift.yaml b/deploy/operator-deployment-openshift.yaml
index 225c8f4..cf8dca8 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.1-SNAPSHOT
+          image: docker.io/apache/camel-k:0.3.1
           command:
           - camel-k
           imagePullPolicy: IfNotPresent
diff --git a/deploy/resources.go b/deploy/resources.go
index 065b8f2..dd9444e 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.1-SNAPSHOT
+          image: docker.io/apache/camel-k:0.3.1
           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.1-SNAPSHOT
+          image: docker.io/apache/camel-k:0.3.1
           command:
           - camel-k
           imagePullPolicy: IfNotPresent
diff --git a/pkg/util/defaults/defaults.go b/pkg/util/defaults/defaults.go
index 0d88bc5..d2470dd 100644
--- a/pkg/util/defaults/defaults.go
+++ b/pkg/util/defaults/defaults.go
@@ -6,7 +6,7 @@ package defaults
 
 const (
   // Version -- 
-  Version = "0.3.1-SNAPSHOT"
+  Version = "0.3.1"
 
   // CamelVersionConstraint -- 
   CamelVersionConstraint = "~2.23.x"
diff --git a/script/Makefile b/script/Makefile
index b3c7dcd..501c89d 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -1,5 +1,5 @@
 VERSIONFILE := pkg/util/defaults/defaults.go
-VERSION := 0.3.1-SNAPSHOT
+VERSION := 0.3.1
 RUNTIME_VERSION := 0.3.1
 CAMEL_VERSION := 2.23.1
 CAMEL_VERSION_CONSTRAINT := ~2.23.x
@@ -62,7 +62,7 @@ build-resources:
 	./script/build_catalog.sh $(CAMEL_VERSION) $(RUNTIME_VERSION)
 	./script/build_catalog.sh 2.23.0 $(RUNTIME_VERSION)
 	./script/embed_resources.sh deploy
-	go run cmd/util/json-schema-gen/jsonschemagen.go --out=./assets/json-schema
+	#go run cmd/util/json-schema-gen/jsonschemagen.go --out=./assets/json-schema
 
 build-compile-integration-tests:
 	go test -c -tags=integration ./test/*.go