This GitHub Action sets up an Aerospike database.
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.
Set up Aerospike Community Edition Server with the default configuration
- name: Set up Aerospike Database
uses: reugn/github-action-aerospike@v1
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'