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 2018/12/10 01:07:03 UTC

[camel-k] tag 0.1.0 created (now ae1dcc5)

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

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


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

     new ae1dcc5  Release 0.1.0

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.1.0

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

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

commit ae1dcc558318db332d6a1159658e4af78a24b57f
Author: nferraro <ni...@gmail.com>
AuthorDate: Mon Dec 10 02:06:55 2018 +0100

    Release 0.1.0
---
 deploy/operator-deployment-kubernetes.yaml |  2 +-
 deploy/operator-deployment-openshift.yaml  |  2 +-
 deploy/resources.go                        |  4 ++--
 kaniko-secret.json                         | 12 ++++++++++++
 runtime/camel-knative-http/pom.xml         |  2 +-
 runtime/camel-knative/pom.xml              |  2 +-
 runtime/catalog-builder/pom.xml            |  2 +-
 runtime/dependency-lister/pom.xml          |  2 +-
 runtime/groovy/pom.xml                     |  2 +-
 runtime/jvm/pom.xml                        |  2 +-
 runtime/kotlin/pom.xml                     |  2 +-
 runtime/pom.xml                            |  2 +-
 runtime/spring-boot/pom.xml                |  2 +-
 version/version.go                         |  2 +-
 14 files changed, 26 insertions(+), 14 deletions(-)

diff --git a/deploy/operator-deployment-kubernetes.yaml b/deploy/operator-deployment-kubernetes.yaml
index 05ff7dd..3f8faa7 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.1.0-SNAPSHOT
+          image: docker.io/apache/camel-k:0.1.0
           ports:
           - containerPort: 60000
             name: metrics
diff --git a/deploy/operator-deployment-openshift.yaml b/deploy/operator-deployment-openshift.yaml
index 3c3e5c6..58bcada 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.1.0-SNAPSHOT
+          image: docker.io/apache/camel-k:0.1.0
           ports:
           - containerPort: 60000
             name: metrics
diff --git a/deploy/resources.go b/deploy/resources.go
index 3dbe40f..65f978d 100644
--- a/deploy/resources.go
+++ b/deploy/resources.go
@@ -2259,7 +2259,7 @@ spec:
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:0.1.0-SNAPSHOT
+          image: docker.io/apache/camel-k:0.1.0
           ports:
           - containerPort: 60000
             name: metrics
@@ -2318,7 +2318,7 @@ spec:
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:0.1.0-SNAPSHOT
+          image: docker.io/apache/camel-k:0.1.0
           ports:
           - containerPort: 60000
             name: metrics
diff --git a/kaniko-secret.json b/kaniko-secret.json
new file mode 100644
index 0000000..34af73a
--- /dev/null
+++ b/kaniko-secret.json
@@ -0,0 +1,12 @@
+{
+  "type": "service_account",
+  "project_id": "camel-k",
+  "private_key_id": "0e6e2fb6064b0e613605d08df16ed0819e0cd0a5",
+  "private_key": "-----BEGIN PRIVATE KEY-----\nMIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCty9ib+3zVYVsF\nphJD7znvhjJQY+sXClVawA5YaqcxhSMA7UzvqM+z3R9pep0hTX04EZ4gWnwjxHPV\naYTZ8LFjMaFBLIysVpWmbLwvGtemqsCIR5wMuYlY8RZ+xWW6sFLicdgoCYDal5w3\n+Beyyt1DecjqC9PwQPBw3WtyPwhdAu/+wwKcW51rpX6MFuxYZiBGz0MXlYUwTLmj\ndAXTubYJSDcAPosJiKpFdEYk+LyJz2TgTjl7/YmY8EgK/G6rf4dsZWGZJx668FVo\nXzIr0qjuj3KbxFyxVBLEvnpOzXYhSLL8sSu1Upl2BvT20UEK/TjGqOD/QFn29cPL\n+OlrerPtAgMBAAECggEACxxX0/sDK0oOzWDlVIn/8G/qGgkVP [...]
+  "client_email": "camel-k-builder@camel-k.iam.gserviceaccount.com",
+  "client_id": "102274072981210408435",
+  "auth_uri": "https://accounts.google.com/o/oauth2/auth",
+  "token_uri": "https://oauth2.googleapis.com/token",
+  "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
+  "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/camel-k-builder%40camel-k.iam.gserviceaccount.com"
+}
diff --git a/runtime/camel-knative-http/pom.xml b/runtime/camel-knative-http/pom.xml
index 56b4d3f..bef2536 100644
--- a/runtime/camel-knative-http/pom.xml
+++ b/runtime/camel-knative-http/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.camel.k</groupId>
         <artifactId>camel-k-runtime-parent</artifactId>
-        <version>0.1.0-SNAPSHOT</version>
+        <version>0.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/runtime/camel-knative/pom.xml b/runtime/camel-knative/pom.xml
index fed61e4..0045665 100644
--- a/runtime/camel-knative/pom.xml
+++ b/runtime/camel-knative/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.camel.k</groupId>
         <artifactId>camel-k-runtime-parent</artifactId>
-        <version>0.1.0-SNAPSHOT</version>
+        <version>0.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/runtime/catalog-builder/pom.xml b/runtime/catalog-builder/pom.xml
index c3f3ba2..9204f5f 100644
--- a/runtime/catalog-builder/pom.xml
+++ b/runtime/catalog-builder/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.camel.k</groupId>
     <artifactId>camel-k-runtime-parent</artifactId>
-    <version>0.1.0-SNAPSHOT</version>
+    <version>0.1.0</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 
diff --git a/runtime/dependency-lister/pom.xml b/runtime/dependency-lister/pom.xml
index 523d338..666b878 100644
--- a/runtime/dependency-lister/pom.xml
+++ b/runtime/dependency-lister/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.camel.k</groupId>
     <artifactId>camel-k-runtime-parent</artifactId>
-    <version>0.1.0-SNAPSHOT</version>
+    <version>0.1.0</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>
diff --git a/runtime/groovy/pom.xml b/runtime/groovy/pom.xml
index 7666780..10d4330 100644
--- a/runtime/groovy/pom.xml
+++ b/runtime/groovy/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.camel.k</groupId>
         <artifactId>camel-k-runtime-parent</artifactId>
-        <version>0.1.0-SNAPSHOT</version>
+        <version>0.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/runtime/jvm/pom.xml b/runtime/jvm/pom.xml
index 242da85..105a173 100644
--- a/runtime/jvm/pom.xml
+++ b/runtime/jvm/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.camel.k</groupId>
         <artifactId>camel-k-runtime-parent</artifactId>
-        <version>0.1.0-SNAPSHOT</version>
+        <version>0.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/runtime/kotlin/pom.xml b/runtime/kotlin/pom.xml
index 37f3d9a..61443b8 100644
--- a/runtime/kotlin/pom.xml
+++ b/runtime/kotlin/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.camel.k</groupId>
         <artifactId>camel-k-runtime-parent</artifactId>
-        <version>0.1.0-SNAPSHOT</version>
+        <version>0.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/runtime/pom.xml b/runtime/pom.xml
index 2a158db..6eb535b 100644
--- a/runtime/pom.xml
+++ b/runtime/pom.xml
@@ -24,7 +24,7 @@
 
     <groupId>org.apache.camel.k</groupId>
     <artifactId>camel-k-runtime-parent</artifactId>
-    <version>0.1.0-SNAPSHOT</version>
+    <version>0.1.0</version>
     <packaging>pom</packaging>
 
     <properties>
diff --git a/runtime/spring-boot/pom.xml b/runtime/spring-boot/pom.xml
index ae0c1b8..be985ce 100644
--- a/runtime/spring-boot/pom.xml
+++ b/runtime/spring-boot/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.camel.k</groupId>
         <artifactId>camel-k-runtime-parent</artifactId>
-        <version>0.1.0-SNAPSHOT</version>
+        <version>0.1.0</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
diff --git a/version/version.go b/version/version.go
index f47f015..80e8261 100644
--- a/version/version.go
+++ b/version/version.go
@@ -20,5 +20,5 @@ package version
 
 var (
 	// Version is the global Camel K Version
-	Version = "0.1.0-SNAPSHOT"
+	Version = "0.1.0"
 )