Skip to content

Commit

Permalink
change certificate field for s3 storageSecret in python
Browse files Browse the repository at this point in the history
Signed-off-by: jooho <jlee@redhat.com>
  • Loading branch information
Jooho committed Feb 21, 2024
1 parent 5f644bf commit cce0b8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/kserve/kserve/storage/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def _update_with_storage_spec():
os.environ["AWS_ACCESS_KEY_ID"] = storage_secret_json.get("access_key_id", "")
os.environ["AWS_SECRET_ACCESS_KEY"] = storage_secret_json.get("secret_access_key", "")
os.environ["AWS_DEFAULT_REGION"] = storage_secret_json.get("region", "")
os.environ["AWS_CA_BUNDLE"] = storage_secret_json.get("certificate", "")
os.environ["AWS_CA_BUNDLE"] = storage_secret_json.get("certificate_path", "")
os.environ["S3_VERIFY_SSL"] = storage_secret_json.get("verify_ssl", "1")
os.environ["awsAnonymousCredential"] = storage_secret_json.get("anonymous", "")

Expand Down

0 comments on commit cce0b8b

Please sign in to comment.