Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hany-consul-backup-restore

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hany-consul-backup-restore

Library to backup and restore consul key values

  • 1.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

consul-backup-restore

consul-backup-restore is a way of easily restoring and backing up key value pairs from consul. It works with Amazon's S3 service or by default locally.

Install

npm install consul-backup-restore

API

Initialise

var ConsulBackupRestore = require('consul-backup-restore');
var cbr = new ConsulBackupRestore({host: 'localhost', port:8500});

Backup - cbr.backup([options], callback)

cbr.backup(
    {prefix: 'serviceName', filePath:'path/to/myFile'},
    function(err, result) {
        if (err) throw err;
        console.log(result)
    }
)

Callbacks has an error argument and a result argument. The result argument will either be the name of the file, or the s3 data dump.

Options

  • prefix : Consul prefix used to back up keys from consul. If left blank all key value pairs will be backed up.
  • s3BucketName: If you wish to use AWS's s3 bucket, specify the buckets name.
  • filePath: Will override the backup file name with your own.

Restore - cbr.restore([options], callback)

cbr.restore(
    {prefix: 'serviceName', override: true, filePath:'path/to/myFile'},
    function(err, result) {
        if (err) throw err;
        console.log(result)
    }    
)

Callbacks has an error argument and a result argument. The result will return an array of keys that were backed up. For example a key that already exists in consul will only be returned if the override is set to true.

Options

  • s3BucketName: If you wish to use AWS's s3 bucket, specify the buckets name.
  • filePath: name of the file you wish to restore from.
  • override: use true or 'true' to override existing keys & their values in consul.

Local

To run the tests locally you must have a consul instance running. We do this through docker.

docker run -d -p 8500:8500 -p 8600:53 -p 8400:8400 consul agent -dev -client 0.0.0.0 -advertise 127.0.0.1

From then you can run your tests using mocha

Keywords

FAQs

Package last updated on 08 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc