Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cluetec/lifeboat
Backup solution to create backups from any kind of source system to any kind of storage system
https://github.com/cluetec/lifeboat
azure backup backup-tool database hashicorp-vault mongodb mongodb-backup postgresql postgresql-backup s3
Last synced: 28 days ago
JSON representation
Backup solution to create backups from any kind of source system to any kind of storage system
- Host: GitHub
- URL: https://github.com/cluetec/lifeboat
- Owner: cluetec
- License: apache-2.0
- Created: 2023-10-26T06:01:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-16T12:38:13.000Z (about 2 months ago)
- Last Synced: 2024-09-28T18:23:44.581Z (about 1 month ago)
- Topics: azure, backup, backup-tool, database, hashicorp-vault, mongodb, mongodb-backup, postgresql, postgresql-backup, s3
- Language: Go
- Homepage: https://cluetec.de
- Size: 209 KB
- Stars: 14
- Watchers: 7
- Forks: 2
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Lifeboat
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/cluetec/lifeboat)](https://github.com/cluetec/lifeboat/releases)
[![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/cluetec/lifeboat)](go.sum)
[![Go Report Card](https://goreportcard.com/badge/github.com/cluetec/lifeboat)](https://goreportcard.com/report/github.com/cluetec/lifeboat)Lifeboat is a backup tool provided by [cluetec GmbH](https://cluetec.de). Lifeboat enables the user to create backups
for a range of different source systems (e.g. PostgreSQL, MongoDB, HashiCorp Vault) and storing the backup also in
different destination storage systems (e.g. S3 Buckets, Azure Blob, S/FTP, local filesystem).## ✅ Supported Systems
Source systems:
- [x] Local filesystem
- [ ] PostgreSQL (Not implemented yet)
- [ ] MongoDB (Not implemented yet)
- [ ] HashiCorp Vault (Not implemented yet)Destination storage systems:
- [x] Local filesystem
- [ ] S3 Bucket (Not implemented yet)
- [ ] Azure Storage Account (Not implemented yet)
- [ ] S/FTP (Not implemented yet)## 🔥 Motivation
cluetec has been offering [software development services](https://www.cluetec.de/development/digitale-transformation/)
for several years now. We have been contracted with the implementation and initial operation of the software for a large
number of projects. Here we repeatedly encountered the backup issue for various database systems. To avoid having to
copy and adapt shell scripts back and forth every time, we thought about turning these shell scripts into an application
that could be used to back up various database systems with as little adaptation effort as possible.## 💻 Installation
At the moment we don't provide any installation methods. As we just started the project, we will start with providing
the compiled binaries within the GitHub Releases. Later container images as also helm charts will follow.## ⚙️ Usage
Lifeboat is a CLI tool which makes it possible to use it in various kind of environments like on a local machine, in a
Unix cronjob, in Kubernetes, in a VM, wherever the user wants. As the tool needs a quite complex configuration it's
possible to provide a config file. In addition, it's also possible to provide all configuration via environment
variables.```shell
$ lb
Lifeboat is a general purpose backup tool which supports backups for arbitrary sources and destinations.Usage:
lb [command]Available Commands:
backup Execute the backup.
completion Generate the autocompletion script for the specified shell
help Help about any commandFlags:
-h, --help help for lbUse "lb [command] --help" for more information about a command.
```### Configuration
The configuration is divided in three different parts:
1. General configs
2. Source system configs
3. Destination storage configsIf you want to set a config via an environment variable, just concatenate the yaml structure (in uppercase characters)
with underscores (`_`). For example like this: `SOURCE_FILESYSTEM_PATH`To get an idea how the configuration can look like, have a look at the [`config.yaml`](./config.yaml).
#### General configuration
| Yaml Config | Default | Required | Description |
|-------------|---------|----------|------------------------------------------------------------------------------------------------|
| `logLevel` | `info` | 👎 | Defines the log level of the application. Possible value are: `debug`, `info`, `warn`, `error` |#### Source system configuration
All configurations for the source system needs to be placed under the `source` object in the configuration.
Furthermore, we need to define, which source system we want to use. This will be done by setting the `type` field, like
it's done in the following example. The possible values can be found in the respective subsections for each source
system.```yaml
source:
type: filesystem
```##### Filesystem
The following configs need to be place under the following yaml structure:
```yaml
source:
type: filesystem
filesystem:
...
```| Yaml Config | Default | Required | Description |
|-------------|---------|----------|--------------------------------------------------------------------------------------------------------------|
| `path` | | 👍 | Defines the path in the local filesystem (relative or absolute) to a file or folder that should be backed up. |#### Destination storage configuration
All configurations for the destination storage systems needs to be placed under the `destination` object in the
configuration. Furthermore, we need to define, which destination storage system we want to use. This will be done by
setting the `type` field, like it's done in the following example. The possible values can be found in the respective
subsections for each destination storage system.```yaml
destination:
type: filesystem
```##### Filesystem
The following configs need to be place under the following yaml structure:
```yaml
destination:
type: filesystem
filesystem:
...
```| Yaml Config | Default | Required | Description |
|-------------|---------|----------|------------------------------------------------------------------------------------------|
| `path` | | 👍 | Defines the path in the local filesystem (relative or absolute) where to store the file. |## 🤝 Contribution
Everyone is more than welcome to contribute to this project! That's what open source is all about!
To have some contribution guidance, please have a look at [CONTRIBUTING.md](CONTRIBUTING.md).
### 👥 Contributors
Made with [contrib.rocks](https://contrib.rocks).
## ⚖️ License
The project is licensed under the ["Apache-2.0"](./LICENSE) license.