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 2020/09/25 11:40:07 UTC

[GitHub] [camel-k] lburgazzoli commented on issue #1715: Environment Variables from Secrets

lburgazzoli commented on issue #1715:
URL: https://github.com/apache/camel-k/issues/1715#issuecomment-698881702


   if your put the credential in a secret, then you can use
   
       kamel run --secret your-secret
   
   the value in the secret are made available to the integration thus you can do something like:
   
   ```java
   @BindToRegistry("dataSource")
   public BasicDataSource datasoure(
           @PropertyInject("db.usr") String usr,
           @PropertyInject("db.pwd") String pwd) {
   
       BasicDataSource dataSource = new BasicDataSource();
       dataSource.setDriverClassName("org.postgresql.Driver");
       dataSource.setUrl("jdbc:postgresql://postgres:5432/my-db");
       dataSource.setUsername(usr); // <-- from secret 
       dataSource.setPassword(pwd); // <-- from secret 
   
       return dataSource;
   }
   ```
   
   


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

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