Configure Aerospike with AKO
Overview
The pages in this section describe how to configure an Aerospike Database deployment with Aerospike Kubernetes Operator (AKO).
Aerospike cluster configuration settings are in the Aerospike cluster Custom Resource (CR) file. When you make changes in the CR file, AKO reads the changes and applies them to the cluster. The CR file is not required to be in any specific location on the server where you run Kubernetes, since the command to update AKO with a new version of the file passes the entire file path to AKO.
By default, and for all examples in this documentation, the CR file is named aerospike-cluster.yaml
and located in the same directory where you run kubectl
commands.
AKO configuration
Kubernetes requires configurations in YAML format, while Aerospike uses its own format. AKO translates between the two formats automatically, which means you must follow the specific YAML conventions required for configuration.
See Configuration parameters for a list of all parameters and details on usage. Many parameters support dynamic configuration, to update the cluster upon changes without requiring a restart.
Features
See the following pages for in-depth explanations and guides to configuring certain features on your Aerospike cluster.
- Change the compute resources available to your cluster: Scaling
- Split a single cluster across different hardware: Rack Awareness
- Duplicate a cluster across different datacenters: XDR
- Set up monitoring for the cluster using external tools: Monitoring
- Set up an automatically-managed strong consistency namespace to guarantee no partial writes: Strong Consistency
Configuration change process
In this example, we modify a parameter, triggering a rolling restart (default behavior), and check the parameter value after the restart.
-
Edit and apply the CR file. For this example, make a change to the number of file descriptors available to an Aerospike node. By default, this is
15000
. Change thespec.aerospikeConfig.service.proto-fd-max
field in the CR file to20000
.apiVersion: asdb.aerospike.com/v1kind: AerospikeClustermetadata:name: aeroclusternamespace: aerospikespec:size: 2image: aerospike/aerospike-server-enterprise:8.0.0.2aerospikeConfig:service:proto-fd-max: 15000 -
Save and exit the CR file, then use
kubectl
to apply the change.Terminal window kubectl apply -f aerospike-cluster.yamlThe Kubernetes pods undergo a rolling restart.
Output:
Terminal window $ kubectl get pods -n aerospikeNAME READY STATUS RESTARTS AGEaerocluster-0-0 1/1 Running 0 3m6saerocluster-0-1 1/1 Running 0 3m6saerocluster-0-2 1/1 Running 0 30saerocluster-0-3 1/1 Terminating 0 30s -
After all the pods have restarted, use
kubectl describe
to get the cluster status. Checkspec.aerospikeConfig.service.proto-fd-max
under “Status.”Terminal window $ kubectl -n aerospike describe aerospikecluster aeroclusterName: aeroclusterNamespace: aerospikeKind: AerospikeCluster...Status:Aerospike Config:Service:Proto - Fd - Max: 20000...
Unchangeable Parameters
AKO does not support setting certain configuration parameters in the CR file. See the limitations page for more information.