You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2022/10/21 08:27:54 UTC

[GitHub] [camel-k] milank78git opened a new issue, #3763: Helm - missing parameters

milank78git opened a new issue, #3763:
URL: https://github.com/apache/camel-k/issues/3763

   Hi, 
   
   I'm using helm the latest Camel-K 1.10.x and  missing parameter KAMEL_OPERATOR_ID 
   
   Installing via binary camel sets this parameter
   
   Please add in operator.yaml helm also :
   annotations 
   imagePullSecrets 
   
   Thank you very much


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k] claudio4j commented on issue #3763: Helm - missing parameters

Posted by GitBox <gi...@apache.org>.
claudio4j commented on issue #3763:
URL: https://github.com/apache/camel-k/issues/3763#issuecomment-1358238722

   closing as this was fixed in main branch, and released as part of Camel K 1.11.0


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k] oscerd commented on issue #3763: Helm - missing parameters

Posted by GitBox <gi...@apache.org>.
oscerd commented on issue #3763:
URL: https://github.com/apache/camel-k/issues/3763#issuecomment-1286636910

   You're welcome to open a PR for this.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k] MehrCurry commented on issue #3763: Helm - missing parameters

Posted by GitBox <gi...@apache.org>.
MehrCurry commented on issue #3763:
URL: https://github.com/apache/camel-k/issues/3763#issuecomment-1293589182

   My hack workaround is a kyverno policy to patch the variable:
   
   ```
   ---
   apiVersion: kyverno.io/v1
   kind: ClusterPolicy
   metadata:
     name: add-operator-id
     annotations:
       policies.kyverno.io/title: Add Environment Variables KAMEL_OPERATOR_ID
       policies.kyverno.io/subject: Deployment
       policies.kyverno.io/category: Other
       policies.kyverno.io/description: >-
         This i a temporary fix for the missing KAMEL_OPERATOR_ID variable in the
         camel-k helm chart. See https://github.com/apache/camel-k/issues/3763
   spec:
     rules:
     - name: add-operator-id
       match:
         resources:
           names:
           - camel-k-operator
           kinds:
           - Deployment
       mutate:
         patchesJson6902: |-
           - op: add
             path: "/spec/template/spec/containers/0/env/-"
             value: {"name":"KAMEL_OPERATOR_ID","value":"camel-k"}
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k] milank78git commented on issue #3763: Helm - missing parameters

Posted by GitBox <gi...@apache.org>.
milank78git commented on issue #3763:
URL: https://github.com/apache/camel-k/issues/3763#issuecomment-1291843616

   Thx add PR https://github.com/apache/camel-k/pull/3778/commits/bc3953647964917e694d169ce3f099c783c5662b


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k] claudio4j closed issue #3763: Helm - missing parameters

Posted by GitBox <gi...@apache.org>.
claudio4j closed issue #3763: Helm - missing parameters
URL: https://github.com/apache/camel-k/issues/3763


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [camel-k] MehrCurry commented on issue #3763: Helm - missing parameters

Posted by GitBox <gi...@apache.org>.
MehrCurry commented on issue #3763:
URL: https://github.com/apache/camel-k/issues/3763#issuecomment-1293557079

   I am also struggling with the missing KAMEL_OPERATOR_ID


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org