-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spring Boot Cloud Config #1230
base: master
Are you sure you want to change the base?
Spring Boot Cloud Config #1230
Conversation
25b3e33
to
2b4022b
Compare
@lony2003 first of all, thanks so so much for contributing back with this. This is highly appreciated.. I will start adding comments in the PR with small details that we need to fix and questions about how this would work. It will be great if you can add as part of this PR an example on the |
...ain/java/io/dapr/spring/boot/cloudconfig/autoconfigure/DaprCloudConfigAutoConfiguration.java
Outdated
Show resolved
Hide resolved
import io.dapr.spring.boot.autoconfigure.client.DaprClientProperties; | ||
import io.dapr.spring.boot.autoconfigure.client.DaprConnectionDetails; | ||
|
||
class CloudConfigPropertiesDaprConnectionDetails implements DaprConnectionDetails { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lony2003 do we need to duplicate the DaprConnectionDetails, why are these different for the normal DaprConnectionDetails?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No difference, just because the PropertyDaprConnectionDetails is protected and can't be used in another package.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@artur-ciocanu should we change the PropertyDaprConnectionDetails
visibility so it can be reused?
...onfig/src/main/java/io/dapr/spring/boot/cloudconfig/config/DaprCloudConfigClientManager.java
Outdated
Show resolved
Hide resolved
...udconfig/src/main/java/io/dapr/spring/boot/cloudconfig/config/DaprCloudConfigProperties.java
Show resolved
Hide resolved
Thanks. the code is not completed currently, I created this pull request is for the problems in issue #1225 , I think we need a schema for cloud config url, and have some other things to be discussed😊😊😊 |
Cloud Config Import SchemasSecret Store Componenturl structure
paramters
demomultiValued = false:store content(file secret store as example){
"dapr.spring.demo-config-secret.singlevalue": "testvalue",
"multivalue-properties": "dapr.spring.demo-config-secret.multivalue.v1=spring\ndapr.spring.demo-config-secret.multivalue.v2=dapr",
"multivalue-yaml": "dapr:\n spring:\n demo-config-secret:\n multivalue:\n v3: cloud"
} valid demo url
multiValued = true, nestedSeparator = ".":store content(file secret store as example){
"value1": {
"dapr": {
"spring": {
"demo-config-secret": {
"multivalue": {
"v4": "config"
}
}
}
}
}
} will be read as {
"value1": {
"dapr.spring.demo-config-secret.multivalue.v4": "config"
}
} valid demo url
Configuration Componenturl structure
paramters
Demostore content(table as example)
valid demo url
|
383a076
to
034baad
Compare
All jobs have done, waiting for review. Note that subscription of configuration api is not implemented, just as a reservation. |
...ng-cloudconfig/src/test/java/io/dapr/spring/boot/cloudconfig/CloudConfigTestApplication.java
Show resolved
Hide resolved
dapr-spring/dapr-spring-cloudconfig/src/test/resources/application.yaml
Outdated
Show resolved
Hide resolved
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1230 +/- ##
============================================
- Coverage 76.91% 74.89% -2.03%
- Complexity 1592 1694 +102
============================================
Files 145 208 +63
Lines 4843 5449 +606
Branches 562 590 +28
============================================
+ Hits 3725 4081 +356
- Misses 821 1024 +203
- Partials 297 344 +47 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
I have checked the error, and it seems that jacoco coverage throws the error. I have add a test of bulk secret to coverage more situation in |
@lony2003 if you don't feel comfortable with that.. I can spend some time after KubeCon (the whole next week) to see if I can get it working on your branch |
@salaboy I'll try to enhence that part. But may be I need your help as I really don't familiar with that😂😂😂. I am from China, so sometimes I might use some inappropriate words when communicating in English. I hope you don't mind😃😃😃. |
@lony2003 your english is more than fine! thanks so much for all the work, if you have questions don't hesitate to ask. Are you on discord right? |
@salaboy yeah, I'll communicate with you on discord if I meet troubles. Thanks! |
@salaboy I have checked the dapr documentation and find that Kubernetes ConfigMap is not supported in dapr runtime, only Kubernetes Secret supported in dapr secret. I have write a simple documentation of how to deploy on Kubernetes. Further test and review may needed. |
@salaboy I have tried the Kubernetes usage and everything needed is documented, it works for me. |
…dcoded prefix(dapr#1225) create a public static final value PROPERTY_PREFIX in DaprClientProperties change the prefix value in the ConfigurationProperties to DaprClientProperties.PROPERTY_PREFIX Dapr Cloud Config rely on that. Signed-off-by: lony2003 <[email protected]>
…of Spring Cloud Config(dapr#1225) Originally from https://github.com/fangkehou-team/dapr-spring, this library created a backend of SpringCloudConfig just like SpringCloudVault. The original library only uses secret store as config store api is not stable at that time. As the configuration api is stable now, the config loader using that api would be implemented later. Signed-off-by: lony2003 <[email protected]>
Signed-off-by: lony2003 <[email protected]>
Signed-off-by: lony2003 <[email protected]>
…porter Implemented the configuration importer using dapr client configuration api also done a style check Signed-off-by: lony2003 <[email protected]>
Signed-off-by: lony2003 <[email protected]>
Signed-off-by: lony2003 <[email protected]>
Springboot‘s PropertySourceLoader will return a invalid source if it doesn't support that instead of throw errors. So we have to clear that what kind of loader we want to use, that is , that kind of resource it is. Signed-off-by: lony2003 <[email protected]>
Enum of Config Type has lack of file extension suport, reimplement it as class Signed-off-by: lony2003 <[email protected]>
… and config store Signed-off-by: lony2003 <[email protected]>
…fig store (try1) Signed-off-by: lony2003 <[email protected]>
…cloudconfig Signed-off-by: lony2003 <[email protected]>
Signed-off-by: lony2003 <[email protected]>
Signed-off-by: lony2003 <[email protected]>
add a test of Dapr Secret getBulkSecret method Signed-off-by: lony2003 <[email protected]>
Signed-off-by: lony2003 <[email protected]>
Signed-off-by: lony2003 <[email protected]>
Signed-off-by: lony2003 <[email protected]>
Fix the example doc to make cloud config demo works both local and kubernetes, and pass the mm doc validate Signed-off-by: lony2003 <[email protected]>
(cherry picked from commit 31a47f5) Signed-off-by: lony2003 <[email protected]>
Fix the example doc to make cloud config demo works both local and kubernetes Signed-off-by: lony2003 <[email protected]>
Signed-off-by: lony2003 <[email protected]>
2bed2a2
to
70d4eea
Compare
Description
A new library that implement a backend of Spring Cloud Config.
Originally from https://github.com/fangkehou-team/dapr-spring, this library created a backend of SpringCloudConfig just like SpringCloudVault.
The original library only uses secret store as config store api is not stable at that time.
As the configuration api is stable now, the config loader using that api has been implemented, but subscription of configuration has not implemented, just for reservation.
Issue reference
this PR will close: #1225
Checklist
Please make sure you've completed the relevant tasks for this PR, out of the following list: