diff --git a/.drone.yml b/.drone.yml index e1d6882..de266af 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,11 +8,11 @@ steps: - name: build image: plugins/hugo settings: - hugo_version: 0.91.2 + hugo_version: 0.111.3 validate: true - name: deploy - image: jcr.burble.dn42/bdn42-docker/rsync + image: git.burble.dn42/burble/rsync environment: VAULT_TOKEN: from_secret: WWW_DEPLOY_TOKEN diff --git a/content/network/IPAM.md b/content/network/IPAM.md index 8c1715a..4c96dd9 100644 --- a/content/network/IPAM.md +++ b/content/network/IPAM.md @@ -34,7 +34,7 @@ IP address tables |[burble.dn42](https://burble.dn42)
[www.burble.dn42](https://burble.dn42)|172.20.129.3|fd42:4242:2601:ac80::1|Website| |collector.dn42|172.20.129.4|fd42:4242:2601:ac12::1|Global Route Collector| |pingable.burble.dn42|172.20.129.5|fd42:4242:2601:ac05::1|Pingable IP Address| -|wiki.burble.dn42|172.20.129.6|fd42:4242:2601:ac81::1|DN42 Wiki Mirror| +|nats.burble.dn42|172.20.129.6|fd42:4242:2601:ac06::1|nats.io Cluster| |rproxy.burble.dn42|172.20.129.7|fd42:4242:2601:acf0::1|Distributed NGINX Reverse Proxy| |whois.burble.dn42|172.20.129.8|fd42:4242:2601:ac43::1|Whois service| |voip.burble.dn42|172.20.129.9|fd42:4242:2601:37:216:3eff:fe8f:6211|Asterisk VOIP Service| diff --git a/content/services/minio.md b/content/services/minio.md new file mode 100644 index 0000000..f2c33c0 --- /dev/null +++ b/content/services/minio.md @@ -0,0 +1,105 @@ +--- +title: "S3 Object Storage" +geekdocDescription: "S3 Object Service" +weight: 65 +--- +burble.dn42 provides an S3 compatible storage service based on [min.io](https://min.io/). + +- [https://minio.burble.dn42](https://minio.burble.dn42) - Web interface +- s3.burble.dn42 - S3 compatible interface + +{{}} +Remember that the storage service is provided for the dn42 community and +the [burble.dn42 abuse policy](/network/abuse/) applies. + +Be considerate in your usage so that others will get the same benefits as +you are enjoying now. Clean up files that you no longer need, do not use the service for +illegal or objectional content and don't be stupid. +{{}} + +## Accessing the Service + +The object storage service is available for all users who have set a burble.dn42 +password via the [service portal](https://svc.burble.dn42). + +### Web Interface + +- [https://minio.burble.dn42](https://minio.burble.dn42) + +The minio web console can be accessed by logging in using your burble.dn42 +username (lowercase of your MNTNER without the -MNT suffix) and password. + +From the web interface users can create your own buckets, upload or download +files, and create access keys for the S3 service. + +{{}} +Any buckets you create must start with your lowercase MNTNER name followed by a dash. + +For example, for FOOBAR-MNT buckets must start with 'foobar-' + +Valid bucket names +```text +foobar-mybucket +foobar-bucket1 +``` + +Invalid bucket names +```text +foobar +foobarmnt-bucket +notfoobar-bucket +``` +{{}} + +### S3 API + +- s3.burble.dn42 + +An S3 compatible API is accessible via https://s3.burble.dn42. The S3 region is `uk-lon2` + +{{}} +Don't use your burble.dn42 username and password. +Use the web interface on [https://minio.burble.dn42](https://minio.burble.dn42) to create a unique access and secret key when using the S3 API. +{{}} + +## Example usage + +### Using the minio client utility + +1) Install the [minio client](https://min.io/docs/minio/linux/reference/minio-mc.html#quickstart) +2) Log in to the web console at https://minio.burble.dn42 using your burble.dn42 username and password +3) Create yourself a bucket, remember to start the bucket with your mntner e.g. 'foobar-' +4) Create an acccess and secret key pair +5) Log out the web interface and return back to the cli +6) [Create an alias](https://min.io/docs/minio/linux/reference/minio-mc.html#create-an-alias-for-the-s3-compatible-service) in the client using the access and secret key pair generated in step 4 + +```text +mc alias set burble https://s3.burble.dn42 ACCESS_KEY SECRET KEY +``` + +5) You can now use the client to access your bucket + +```text +mc ls burble/foobar-mybucket +``` + +### Using the S3 API to mount buckets using rclone + +The [burble.dn42 shell servers](/services/shell/) include rclone which you can use to mount +buckets directly in your shell account. + +1) Log in to the web console at https://minio.burble.dn42 using your burble.dn42 username and password +2) Create yourself a bucket, remember to start the bucket with your mntner e.g. 'foobar-' +3) Create an acccess and secret key pair +4) Log out the web interface and and log in to your shell account +5) Use [`rclone config`](https://rclone.org/s3/#minio) to configure rclone + - Use https://s3.burble.dn42 as the endpoint and uk-lon2 as the region + - Use the access and secret key pair created in step 3 for authentication + +You can now use rclone to mount your buckets in the shell + +```text +$ mkdir tmp +$ rclone mount burble: tmp +``` + diff --git a/content/services/public.md b/content/services/public.md index e18e868..800ee49 100644 --- a/content/services/public.md +++ b/content/services/public.md @@ -121,9 +121,18 @@ Syslogs are exported in real time to a central logging node on the internal netw ## Shell Accounts The burble.dn42 shell service provides shell accounts for dn42 users who -have SSH auth methods in the registry. +have a burble.dn42 password or SSH auth methods in the registry. See the [Shell Accounts](/services/shell/) page. +## S3 Compatible Object Store + +- [https://minio.burble.dn42](https://minio.burble.dn42) - Web interface +- s3.burble.dn42 - S3 compatible interface + +A [min.io](https://min.io/) instance provides S3 compatible storage space for users +that have registered a burble.dn42 password. +See the [S3 Object Storage](/services/minio/) page for more information and examples. + ## DNS |Service|Name|IP|