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

[camel-k] branch master updated (68f9cba -> c8e89bd)

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

astefanutti pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git.


    from 68f9cba  fix: Avoid updating Deployment replicas in default configuration
     new d944582  fix(OLM): Add missing roles for messaging.knative.dev group
     new 8dd31c9  chore(RBAC): Add license header to OLM roles resource
     new 218114d  fix(OLM): Add required default channel to package manifest
     new f382fcc  fix(OLM): CSV name must be DNS-1123 subdomains and consist of lower case alphanumeric characters
     new c8e89bd  fix(OLM): fix 'replaces' field from 1.0.0-M2 CSV

The 5 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.


Summary of changes:
 .../camel-k.v1.0.0-M2.clusterserviceversion.yaml       |  6 +++---
 deploy/olm-catalog/camel-k/camel-k.package.yaml        |  1 +
 deploy/operator-role-olm.yaml                          | 18 ++++++++++++++++++
 3 files changed, 22 insertions(+), 3 deletions(-)


[camel-k] 01/05: fix(OLM): Add missing roles for messaging.knative.dev group

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

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

commit d9445829aff68f0b5741a33d717d5386e7b91297
Author: Antonin Stefanutti <an...@stefanutti.fr>
AuthorDate: Fri Oct 11 10:41:00 2019 +0200

    fix(OLM): Add missing roles for messaging.knative.dev group
---
 deploy/operator-role-olm.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/deploy/operator-role-olm.yaml b/deploy/operator-role-olm.yaml
index ca1ee2f..3c88bcc 100644
--- a/deploy/operator-role-olm.yaml
+++ b/deploy/operator-role-olm.yaml
@@ -169,6 +169,7 @@ rules:
   - watch
 - apiGroups:
   - eventing.knative.dev
+  - messaging.knative.dev
   resources:
   - "*"
   verbs:


[camel-k] 04/05: fix(OLM): CSV name must be DNS-1123 subdomains and consist of lower case alphanumeric characters

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

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

commit f382fccfd96fcc3e6d703d54ff5fcffae0f5724d
Author: Antonin Stefanutti <an...@stefanutti.fr>
AuthorDate: Fri Oct 11 11:02:23 2019 +0200

    fix(OLM): CSV name must be DNS-1123 subdomains and consist of lower case alphanumeric characters
---
 .../camel-k/1.0.0-M2/camel-k.v1.0.0-M2.clusterserviceversion.yaml     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/deploy/olm-catalog/camel-k/1.0.0-M2/camel-k.v1.0.0-M2.clusterserviceversion.yaml b/deploy/olm-catalog/camel-k/1.0.0-M2/camel-k.v1.0.0-M2.clusterserviceversion.yaml
index 59812d4..1dfff63 100644
--- a/deploy/olm-catalog/camel-k/1.0.0-M2/camel-k.v1.0.0-M2.clusterserviceversion.yaml
+++ b/deploy/olm-catalog/camel-k/1.0.0-M2/camel-k.v1.0.0-M2.clusterserviceversion.yaml
@@ -55,7 +55,7 @@ metadata:
       with serverless superpowers.
     repository: https://github.com/apache/camel-k
     support: Camel
-  name: camel-k-operator.v1.0.0-M2
+  name: camel-k-operator.v1.0.0-m2
   namespace: placeholder
 spec:
   apiservicedefinitions: {}
@@ -382,4 +382,4 @@ spec:
   selector:
     matchLabels:
       name: camel-k-operator
-  version: 1.0.0-M2
+  version: 1.0.0-m2


[camel-k] 02/05: chore(RBAC): Add license header to OLM roles resource

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

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

commit 8dd31c9d62af0d62105d079b7b3d70c0e566c9a3
Author: Antonin Stefanutti <an...@stefanutti.fr>
AuthorDate: Fri Oct 11 10:53:03 2019 +0200

    chore(RBAC): Add license header to OLM roles resource
---
 deploy/operator-role-olm.yaml | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/deploy/operator-role-olm.yaml b/deploy/operator-role-olm.yaml
index 3c88bcc..945fcfb 100644
--- a/deploy/operator-role-olm.yaml
+++ b/deploy/operator-role-olm.yaml
@@ -1,3 +1,20 @@
+# ---------------------------------------------------------------------------
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ---------------------------------------------------------------------------
+
 kind: Role
 apiVersion: rbac.authorization.k8s.io/v1beta1
 metadata:


[camel-k] 03/05: fix(OLM): Add required default channel to package manifest

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

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

commit 218114d5effa3695046d705ef3e71a943992b45a
Author: Antonin Stefanutti <an...@stefanutti.fr>
AuthorDate: Fri Oct 11 10:55:00 2019 +0200

    fix(OLM): Add required default channel to package manifest
---
 deploy/olm-catalog/camel-k/camel-k.package.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/deploy/olm-catalog/camel-k/camel-k.package.yaml b/deploy/olm-catalog/camel-k/camel-k.package.yaml
index 7745dc1..a9318de 100644
--- a/deploy/olm-catalog/camel-k/camel-k.package.yaml
+++ b/deploy/olm-catalog/camel-k/camel-k.package.yaml
@@ -19,3 +19,4 @@ packageName: camel-k
 channels:
 - name: alpha
   currentCSV: camel-k-operator.v1.0.0-m2
+defaultChannel: alpha


[camel-k] 05/05: fix(OLM): fix 'replaces' field from 1.0.0-M2 CSV

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

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

commit c8e89bdcdb9485e27b3bb771602c50d8081e8894
Author: Antonin Stefanutti <an...@stefanutti.fr>
AuthorDate: Fri Oct 11 11:25:49 2019 +0200

    fix(OLM): fix 'replaces' field from 1.0.0-M2 CSV
---
 .../camel-k/1.0.0-M2/camel-k.v1.0.0-M2.clusterserviceversion.yaml       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/deploy/olm-catalog/camel-k/1.0.0-M2/camel-k.v1.0.0-M2.clusterserviceversion.yaml b/deploy/olm-catalog/camel-k/1.0.0-M2/camel-k.v1.0.0-M2.clusterserviceversion.yaml
index 1dfff63..5ab6527 100644
--- a/deploy/olm-catalog/camel-k/1.0.0-M2/camel-k.v1.0.0-M2.clusterserviceversion.yaml
+++ b/deploy/olm-catalog/camel-k/1.0.0-M2/camel-k.v1.0.0-M2.clusterserviceversion.yaml
@@ -378,7 +378,7 @@ spec:
   minKubeVersion: 1.11.0
   provider:
     name: The Apache Software Foundation
-  replaces: camel-k.v1.0.0-m1
+  replaces: camel-k-operator.v1.0.0-m1
   selector:
     matchLabels:
       name: camel-k-operator