IMPORTANT: Don't miss our expanded TechEd conference, October 23-24, 2024 in Las Vegas. Gain more in-depth technical knowledge, and take a deeper dive into the nuts and bolts of AI, automation, and the UiPath platform. Register now.
ceph osd set-full-ratio 0.95<95 is the default value so you could increase to 96 and go up
incrementall>ceph osd set-full-ratio 0.95 <95 is the default value so you could increase to 96 and go up
incrementall>
exportPATH=/usr/local/bin:$PATH
kubectl -n rook-ceph get secrets ceph-object-store-secret -o yaml
base64 decode the OBJECT_STORAGE_ACCESSKEY and OBJECT_STORAGE_SECRETKEY and OBJECT_STORAGE_EXTERNAL_HOSTrun: aws configureexport PATH=/usr/local/bin:$PATH
kubectl -n rook-ceph get secrets ceph-object-store-secret -o yaml
base64 decode the OBJECT_STORAGE_ACCESSKEY and OBJECT_STORAGE_SECRETKEY and OBJECT_STORAGE_EXTERNAL_HOST
run: aws configure
aws s3 ls --endpoint-url <AWS-ENDPOINT>--no-verify-ssl --recursive s3://<bucket name>
So for sf-logs
aws s3 ls --endpoint-url <AWS-ENDPOINT>--no-verify-ssl --recursive s3://sf-logs
aws s3 ls --endpoint-url <AWS-ENDPOINT>--no-verify-ssl --recursive s3://sf-logs --recursive --human-readable --sumarizeaws s3 ls --endpoint-url <AWS-ENDPOINT> --no-verify-ssl --recursive s3://<bucket name>
So for sf-logs
aws s3 ls --endpoint-url <AWS-ENDPOINT> --no-verify-ssl --recursive s3://sf-logs
aws s3 ls --endpoint-url <AWS-ENDPOINT> --no-verify-ssl --recursive s3://sf-logs --recursive --human-readable --sumarize
aws s3 rm --endpoint-url <AWS-ENDPOINT>--no-verify-ssl --recursive s3://sf-logs --include="2022* --exclude="2022_12_8"
So craft an include and exclude command to help withthis. use --dryrun firstaws s3 rm --endpoint-url <AWS-ENDPOINT> --no-verify-ssl --recursive s3://sf-logs --include="2022* --exclude="2022_12_8"
So craft an include and exclude command to help with this. use --dryrun first