Skip to content

reugn/github-action-aerospike

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

github-action-aerospike

YAML Lint

This GitHub Action sets up an Aerospike database.

Inputs

Name Required Description Default
port false Aerospike 'service' port, which handles client requests and responses. 3000
server-version false Aerospike server version. latest
config-file false Aerospike configuration file.
feature-key-file 1 false Aerospike EE feature key file.

1 Specify to start Aerospike Server Enterprise Edition (should be in the same directory with config-file). Anyone can sign up to get an evaluation feature key file for a full-featured, single-node Aerospike Enterprise Edition.

Usage examples

Aerospike Community Edition

Set up Aerospike Community Edition Server with the default configuration

- name: Set up Aerospike Database
  uses: reugn/github-action-aerospike@v1

Aerospike Enterprise Edition

Set up Aerospike Enterprise Edition Server by specifying the port, the server configuration and the feature key files

- name: Set up Aerospike Database
  uses: reugn/github-action-aerospike@v1
  with:
    port: 3300
    config-file: '.github/aerospike/aerospike.conf'
    feature-key-file: '.github/aerospike/features.conf'