[MOSIP-43498] Added properties to configure the wait time between gen…#1828
[MOSIP-43498] Added properties to configure the wait time between gen…#1828Ivanmeneges wants to merge 2 commits into
Conversation
…erating UIN/VID in apitestrigs helm chart Added configuration properties for eSignet API Test Rigs, including wait times and retry attempts. Signed-off-by: Ivanmeneges <ivan.anil016@gmail.com>
WalkthroughThree new Helm values were added to Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (4)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (1)
helm/apitestrig/values.yaml (1)
500-509: Consider using unquoted numeric values for consistency.The three new configuration properties use quoted strings (
'90000','20') to represent numeric values. Verify whether this aligns with codebase conventions—if the consuming application expects actual numeric types or if other similar numeric configuration properties in this Helm chart are unquoted. If numeric representation is standard elsewhere in the codebase or values file, consider using unquoted numbers for clarity and to let YAML type inference handle the conversion.Example alternative format:
uinGenerationProcessingDelayTimeInMilliSeconds: 90000 vidGenerationProcessingDelayTimeInMilliSeconds: 90000 uinGenMaxLoopCount: 20
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
helm/apitestrig/values.yaml(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (3)
- GitHub Check: chart-lint-publish / chart-lint-publish
- GitHub Check: Analyze (java-kotlin)
- GitHub Check: build-maven-apitest-commons / maven-build
🔇 Additional comments (1)
helm/apitestrig/values.yaml (1)
500-509: Configuration properties added correctly with clear documentation.The three new properties are well-positioned within the
apitestrig.configmaps.apitestrigsection, indentation is consistent with adjacent configuration keys, and each property includes a descriptive comment. The values (90-second delays and 20 retry attempts) appear reasonable for API test rig processing tolerances. YAML structure is valid.
…erating UIN/VID in apitestrigs helm chart Removed unnecessary blank line in values.yaml. Signed-off-by: Ivanmeneges <ivan.anil016@gmail.com>
…erating UIN/VID in apitestrigs helm chart
Added configuration properties for eSignet API Test Rigs, including wait times and retry attempts.
Summary by CodeRabbit