This is an automated email from the ASF dual-hosted git repository. weichiu pushed a commit to branch HDDS-13454 in repository https://gitbox.apache.org/repos/asf/ozone.git
commit 8d3db2a5f5faf13ccdaeb8490ec1b26735f541ce Author: Wei-Chiu Chuang <[email protected]> AuthorDate: Tue Jul 22 17:25:30 2025 -0700 HDDS-13454. Add robot test and documentation for ozone shell s3 setsecret command. Change-Id: Ifba6c5be5d5f221db528853b7c7f653a6557e570 --- hadoop-ozone/dist/src/main/smoketest/security/ozone-secure-s3.robot | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hadoop-ozone/dist/src/main/smoketest/security/ozone-secure-s3.robot b/hadoop-ozone/dist/src/main/smoketest/security/ozone-secure-s3.robot index 70bade5f1e8..581643623ae 100644 --- a/hadoop-ozone/dist/src/main/smoketest/security/ozone-secure-s3.robot +++ b/hadoop-ozone/dist/src/main/smoketest/security/ozone-secure-s3.robot @@ -12,6 +12,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +#suite: ozonesecure *** Settings *** Documentation Smoke test to start cluster with docker-compose environments. @@ -58,3 +59,8 @@ Secure S3 test Failure ${rc} ${result} = Run And Return Rc And Output aws s3api --endpoint-url ${ENDPOINT_URL} create-bucket --bucket bucket-test123 Should Be True ${rc} > 0 +SetSecret Success + ${output} = Execute ozone sh s3 setsecret --secret=newsecret + Should Contain ${output} AWS_ACCESS_KEY_ID + Should Contain ${output} AWS_SECRET_ACCESS_KEY + --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
