Skip to content
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

Use external mcg endpoint in bucket utils #9733

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix missing variable
Signed-off-by: fbalak <fbalak@redhat.com>
  • Loading branch information
fbalak committed Nov 4, 2024
commit 4f32975cfb976cd055938306a53a14d44ec2d675
6 changes: 1 addition & 5 deletions ocs_ci/ocs/bucket_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,7 @@ def craft_s3cmd_command(cmd, mcg_obj=None, signed_request_creds=None):
f"s3cmd --access_key={mcg_obj.access_key_id} "
f"--secret_key={mcg_obj.access_key} "
f"{region}"
f"--host={mcg_obj.



} "
f"--host={mcg_obj.s3_endpoint}"
f"--host-bucket={mcg_obj.s3_endpoint} "
f"{no_ssl} "
)
Expand Down