https://github.com/springerpe/cf-s3server-buildpack
s3server for CF: https://github.com/jessfraz/s3server
https://github.com/springerpe/cf-s3server-buildpack
Last synced: about 1 year ago
JSON representation
s3server for CF: https://github.com/jessfraz/s3server
- Host: GitHub
- URL: https://github.com/springerpe/cf-s3server-buildpack
- Owner: SpringerPE
- License: mit
- Created: 2021-05-17T15:04:20.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-17T15:40:08.000Z (almost 5 years ago)
- Last Synced: 2025-01-14T04:44:36.685Z (over 1 year ago)
- Language: Shell
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cf-s3server-buildpack
Cloudfoundry buildpack to manage buckets S3, GCS ... based on [rclone](https://rclone.org/)
## Using it
Example `manifest.yml`:
```manifest.yml
---
applications:
- name: rclone
memory: 512M
instances: 1
stack: cflinuxfs3
random-route: true
buildpacks:
- https://github.com/SpringerPE/cf-rclone-buildpack.git
services:
- jose-rclone-gcs
- jose-rclone-aws
env:
AUTH_USER: "admin"
AUTH_PASSWORD: "admin"
CLONE_SOURCE_SERVICE: "jose-rclone-aws"
CLONE_DESTINATION_SERVICE: "jose-rclone-gcs"
CLONE_MODE: sync
CLONE_TIMER: 600
```
# Development
Buildpack implemented using bash scripts to make it easy to understand and change.
https://docs.cloudfoundry.org/buildpacks/understand-buildpacks.html
The builpack uses the `deps` and `cache` folders according the implementation purposes,
so, the first time the buildpack is used it will download all resources, next times
it will use the cached resources.
# Author
(c) 2019 Jose Riguera Lopez
Springernature Engineering Enablement
MIT License