The CycleCloud Redis sample demonstrates configuring and launching a basic Redis ( https://redis.io/ ) cluster from the CycleCloud GUI.
This sample requires the following:
- CycleCloud must be installed and running.
- If this is not the case, see the CycleCloud QuickStart Guide for assistance.
- The CycleCloud CLI must be installed and configured for use.
- You must have access to log in to CycleCloud.
- You must have access to upload data and launch instances in your chosen Cloud Provider account.
- You must have access to a configured CycleCloud "Locker" for Project Storage (Cluster-Init and Chef).
- Optional: To use the cyclecloud project upload <locker> command, you must have a Pogo configuration file set up with write-access to your locker.
- You may use your preferred tool to interact with your storage "Locker" instead.
NOTE:
The instructions in this guide assume the use of Amazon Web Services for the Cloud Provider account.
The first step is to configure the project for use with your storage locker:
Open a terminal session with the CycleCloud CLI enabled.
Switch to the Redis-Cluster sample directory.
Run
cyclecloud project add_target my_locker
(assuming the locker is named "my_locker"). The locker name will generally be the same as the cloud provider you created when configuring CycleCloud. The expected output looks like this::$ cyclecloud project add_target my_locker Name: redis-cluster Version: 1.0.0 Targets: my_locker: {'default': 'true', 'is_locker': 'true'}NOTE: You may call add_target as many times as needed to add additional target lockers.
To upload the project (including any local changes) to your target locker, run the cyclecloud project upload command from the project directory. The expected output looks like this::
$ cyclecloud project upload Sync completed!
IMPORTANT
For the upload to succeed, you must have a valid Pogo configuration for your target Locker.
To import the cluster:
Open a terminal session with the CycleCloud CLI enabled.
Switch to the Redis-Cluster sample directory.
Run
cyclecloud import_template redis-cluster -f ./templates/redis-cluster.txt
. The expected output looks like this::$ cyclecloud import_template redis-cluster -f ./redis-cluster.txt Importing template redis-cluster.... ---------------------- Redis : *template* ---------------------- Keypair: $keypair Cluster nodes: proxy: off Total nodes: 1
- Log in to your CycleCloud from your browser.
- Click the "Clusters" to navigate to the CycleCloud "Clusters" page, if you are not already there.
- Click the "+" button in the "Clusters" frame to create a new cluster.
- In the cluster creation page, click on the Redis-Cluster cluster icon.
- At a minimum, select the Cloud Provider Credentials to use and enter a Name for the cluster.
- Click the "Start" button.
- Select the newly created Redis cluster from the Clusters frame on the CycleCloud "Clusters" page
- To start the cluster, click the Start link in the cluster status frame.
- Later, to stop a started cluster, click the Terminate link in the cluster status frame.