nbdkit-S3-plugin(1) | NBDKIT | nbdkit-S3-plugin(1) |
nbdkit-S3-plugin - open disk images stored in Amazon S3 or Ceph
nbdkit S3 [access-key=...] [secret-key=...] [session-token=...] [endpoint-url=...] bucket=BUCKET key=FILENAME
"nbdkit-S3-plugin" is a plugin for nbdkit(1) which lets you open single files stored in Amazon S3 or Ceph as disk images.
Currently it only allows read access, although write access may be added in future.
This plugin uses the Python Amazon Web Services SDK called Boto3.
nbdkit S3 endpoint-url=https://ceph.example.com \ bucket=MY-BUCKET key=disk.img
Although AWS credentials can be passed to nbdkit on the command line, this is not secure since a user on the same machine could read them using ps(1).
A better way is to pass the credentials through the ~/.aws/credentials file. This takes the form:
[default] aws_access_key_id = XXX aws_secret_access_key = YYY [profile] aws_access_key_id = XXX aws_secret_access_key = YYY
Different profiles from the file can be selected by setting the "AWS_PROFILE" environment variable.
There is much more information about credentials in the Boto3 documentation.
s3fs-fuse (https://github.com/s3fs-fuse/s3fs-fuse) presents a whole S3 bucket as a FUSE filesystem, with each object in the bucket corresponding to a single file. It is therefore quite different from this plugin which turns a single S3 object into a block device.
Use "nbdkit --dump-config" to find the location of $plugindir.
"nbdkit-S3-plugin" first appeared in nbdkit 1.24.
nbdkit(1), nbdkit-plugin(3), nbdkit-python-plugin(3), https://pypi.org/project/boto3/, https://boto3.amazonaws.com/v1/documentation/api/latest/index.html, https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html.
Richard W.M. Jones
Copyright (C) 2020 Red Hat Inc.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2021-01-20 | nbdkit-1.24.1 |