You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2022/08/03 06:39:03 UTC

[camel-k] branch main updated (eb8973c3a -> 801cdad67)

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

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


    from eb8973c3a Pack the correct binary for the architecture into the operator container
     new 2209065f6 allow resources & securityContext in Helm Chart values
     new 1d35ce052 add resources & securityContext to values.yaml
     new 801cdad67 add params resources and securityContext to README.md

The 3 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:
 helm/camel-k/README.md               | 2 ++
 helm/camel-k/templates/operator.yaml | 3 ++-
 helm/camel-k/values.yaml             | 2 ++
 3 files changed, 6 insertions(+), 1 deletion(-)


[camel-k] 03/03: add params resources and securityContext to README.md

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

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

commit 801cdad678955e464cf37f4a67e31f951b6a4532
Author: dlopes <te...@dlopes.de>
AuthorDate: Tue Jun 28 10:14:02 2022 +0200

    add params resources and securityContext to README.md
---
 helm/camel-k/README.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/helm/camel-k/README.md b/helm/camel-k/README.md
index 17753d5e2..b834f2119 100644
--- a/helm/camel-k/README.md
+++ b/helm/camel-k/README.md
@@ -79,6 +79,8 @@ Camel K chart and their default values. The chart allows configuration of an `In
 | `platform.build.registry.insecure`     | Indicates if the registry is not secured                                  | true                           |
 | `platform.cluster`                     | The kind of Kubernetes cluster (Kubernetes or OpenShift)                  | `Kubernetes`                   |
 | `platform.profile`                     | The trait profile to use (Knative, Kubernetes or OpenShift)               | auto                           |
+| `operator.resources`                   | the resource requests and limits to use for the operator                  |                                |
+| `operator.securityContext`             | The (container-related) securityContext to use for the operato            |                                |
 
 ## Contributing
 


[camel-k] 01/03: allow resources & securityContext in Helm Chart values

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

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

commit 2209065f68634e79ed195d6099595b830b34b595
Author: dlopes <te...@dlopes.de>
AuthorDate: Tue Jun 28 10:08:35 2022 +0200

    allow resources & securityContext in Helm Chart values
---
 helm/camel-k/templates/operator.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/helm/camel-k/templates/operator.yaml b/helm/camel-k/templates/operator.yaml
index 9f606bc03..aac26c1c0 100644
--- a/helm/camel-k/templates/operator.yaml
+++ b/helm/camel-k/templates/operator.yaml
@@ -68,5 +68,6 @@ spec:
           ports:
             - containerPort: 8080
               name: metrics
-          resources: {}
+          resources: {{ .Values.operator.resources }}
+          securityContext: {{ .Values.operator.securityContext }}
       serviceAccountName: camel-k-operator


[camel-k] 02/03: add resources & securityContext to values.yaml

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

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

commit 1d35ce052d0e88e9a8d5ba78d5a6e3828a7b9a55
Author: dlopes <te...@dlopes.de>
AuthorDate: Tue Jun 28 10:11:03 2022 +0200

    add resources & securityContext to values.yaml
---
 helm/camel-k/values.yaml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/helm/camel-k/values.yaml b/helm/camel-k/values.yaml
index 002712829..2e8d7854f 100644
--- a/helm/camel-k/values.yaml
+++ b/helm/camel-k/values.yaml
@@ -24,6 +24,8 @@ fullnameOverride: ""
 
 operator:
   image: docker.io/apache/camel-k:1.10.0-SNAPSHOT
+  resources: {}
+  securityContext: {}
 
 platform:
   build: