-
Notifications
You must be signed in to change notification settings - Fork 302
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
Introduce new API _plugins/_security/ssl/certs #1841
Introduce new API _plugins/_security/ssl/certs #1841
Conversation
Signed-off-by: cliu123 <lc12251109@gmail.com>
Codecov Report
@@ Coverage Diff @@
## main #1841 +/- ##
============================================
- Coverage 60.87% 60.86% -0.02%
+ Complexity 3214 3213 -1
============================================
Files 256 256
Lines 18006 18006
Branches 3209 3209
============================================
- Hits 10961 10959 -2
- Misses 5466 5467 +1
- Partials 1579 1580 +1
Continue to review full report at Codecov.
|
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.
Thanks for this fix and the updated tests.
While we are doing this, it looks like there are other places where we are not properly supporting both path variants, could build on this or make another PR where we catch all of the missing APIs?
security/src/main/java/org/opensearch/security/ssl/rest/SecuritySSLReloadCertsAction.java
Line 52 in 918d998
new Route(PUT, "_opendistro/_security/api/ssl/{certType}/reloadcerts/") security/src/main/java/org/opensearch/security/ssl/rest/SecuritySSLInfoAction.java
Line 49 in 918d998
new Route(Method.GET, "/_opendistro/_security/sslinfo")
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-2.0 2.0
# Navigate to the new working tree
cd .worktrees/backport-2.0
# Create a new branch
git switch --create backport/backport-1841-to-2.0
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 dce58266b0242286ff118f8d1360f7867006ad8a
# Push it to GitHub
git push --set-upstream origin backport/backport-1841-to-2.0
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-2.0 Then, create a pull request where the |
Signed-off-by: cliu123 <lc12251109@gmail.com>
Signed-off-by: cliu123 <lc12251109@gmail.com> (cherry picked from commit dce5826)
Signed-off-by: cliu123 <lc12251109@gmail.com>
Signed-off-by: cliu123 lc12251109@gmail.com
Description
Introducing
_plugins/_security/api/ssl/certs
API path to be consistent with OpenSearch API path convention.Issues Resolved
#1827
Testing
UTs
Check List
TO-DO
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.