-
Notifications
You must be signed in to change notification settings - Fork 40
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
Azure Storage Support #74
Comments
Hey @hari-narayanan94 Medium Term (Next few of months) I'll look at the azure sdk https://crates.io/crates/azure_storage_blobs so that it's a first class citizen. Also note that you can disable the S3 Storage upload aspect and provide your own uploader as documented here. |
Thanks for the Quick response , I will try to get it setup on my AKS Cluster with the workaround today and share my experiences . |
I tried the Minio and everything looks to be working on that side and now i have a functioning s3 endpoint . When i installed core dump hander on my AKS Cluster and simulated a crash , the ZIP gets generated but it fails to upload with the following error . [2022-03-10T14:25:22Z INFO core_dump_agent] Uploading: /var/mnt/core-dump-handler/cores/3d7bc367-569a-497e-b929-3b6c33b5dd8c-dump-1646921760-segfaulter-segfaulter-1-4.zip |
Did you install the chart with the bucket option? |
Yes , I did use that while applying the helm , I used the Webapp URL as the s3bucketname . Below is the helm installation command i used helm.exe install my-core-dump-handler core-dump-handler/core-dump-handler --set daemonset.s3AccessKey=storageaccountname --set daemonset.s3Secret=xxxxx --set daemonset.s3BucketName=https://xxxx.azurewebsites.net --set daemonset.s3Region=us-east-1 FYI , Since I only have Azure I used the suggested link to expose s3 protocol for my storage account using minio shim . I dont see anywhere in minio where it asks me to setup a bucket name !! When i try to verify minio server by logging in via a s3 browser it shows me all the blobs in the storage account . |
OK so using https://xxxx.azurewebsites.net/ as a bucket won't work. According to the article you should be able to use the s3cmd to make a bucket.
You should then be able to use this option |
As external events landed in the v8.9.0 release the ground work is in place to create an agent that uploads to azure using azure blobs library or any other azure integration. The idea is to disable the uploading agent by setting |
This Tool looks like the exact thing i need now for my AKS Clusters , but unfortunately Im not able to find any option to send the core dump to any Native Azure Solution . I see s3 is supported and is there any way to send those dumps over to Azure storage Blob or File share ? Azure natively doesn't support s3 protocol
The text was updated successfully, but these errors were encountered: