lburgazzoli edited a comment 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 secret is then mounted to the pod and its values 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:
[email protected]