CloudFormation template generator
This page shows how to create CloudFormation templates using an API call. The same API calls are used by the Self-Service Portal to generate the CloudFormation template before redirecting to AWS.
Before you begin
The APIs described here require an API token which can be obtained at https://get.weka.io/ui/account/api-tokens. Obtaining this token requires registration if you do not have an account.
API overview
To generate a CloudFormation template, it is first necessary to decide which WEKA system version is to be installed. This is performed using the https://<token>@get.weka.io/dist/v1/release
API which provides a list of all available versions:
This list of releases available for installation is sorted backward from the most recent release. By default, 50 results are provided per page. To receive more results, use the page=N
query parameter to receive the Nth
page.
Note: Usually, a request for more results is not necessary, since the first page contains the most recent releases.
Each release contains an ID field that identifies the release. In the examples below, version 3.6.1 has been used.
To generate a CloudFormation template, make a POST
request to the https://<token>@get.weka.io/dist/v1/aws/cfn/<version>
API:
In the example above, a template was generated for a cluster with 10 i3en.2xlarge
backend instances and 2 r3.xlarge
client instances. Refer to the Deployment Types page to learn more, and see all supported instance types in Supported EC2 Instance Types.
Request body
The https://<token>@get.weka.io/dist/v1/aws/cfn/<version>
API provides a JSON object with a cluster
property. cluster
is a list of instance types, roles, and counts:
Property | Description |
| Either |
| One of the supported instance types according to the |
| The number of instances of this type to be included in the template. |
| When |
| Either |
It is possible to specify multiple groups of instances by adding more role
/instance_type
/count
objects to the cluster
array, as long as there are at least 6 backend instances (the minimum number of backend instances required to deploy a cluster).
Custom client AMI
When specifying an ami_id
in client
groups, the specified AMI will be used when launching the client instances. The Weka system will be installed on top of this AMI in a separate EBS volume.
When ami_id
is not specified, the client instances are launched with the latest Amazon Linux supported by the Weka system version selected to be installed.
Note the following when using a custom AMI-ID:
AMIs are stored per region. Make sure to specify an AMI-ID that matches the region in which the CloudFormation template is being deployed.
The AMI operating system must be one of the supported operating systems listed in the prerequisites page of the version being installed. If the AMI defined is not supported or has an unsupported operating system, the installation may fail and the CloudFormation stack will not be created successfully.
Dedicated vs. shared client networking
By default, both client and backend instances are launched in the dedicated networking mode. Although this cannot be changed for backends, it can be controlled for client instances.
Dedicated networking means that an ENI is created for internal cluster traffic in the client instances. This allows the Weka system to bypass the kernel and provide throughput that is only limited by the instance network.
In shared networking, the client shares the instance’s network interface with all traffic passing through the kernel. Although slower, this mode is sometimes desirable when an ENI cannot be allocated or if the operating system does not allow more than one NIC.
Returned result
The returned result is a JSON object with two properties: url
and quick_create_stack
.
The url
property is a URL to an S3 object containing the generated template.
To deploy the CloudFormation template through the AWS console, a quick_create_stack
property contains links to the console for each public AWS region. These links are pre-filled with your API token as a parameter to the template.
Note: CloudFormation template URLs are valid for up to 1 week.
It is also possible to receive the template directly from the API call, without saving it in a bucket. To do this, use a ?type=template
query parameter:
CloudFormation template parameters
The CloudFormation stacks parameters are described in the Cluster CloudFormation Stack section.
IAM role created in the template
The CloudFormation template contains an instance role that allows the Weka system instances to call the following AWS APIs:
ec2:DescribeInstances
ec2:DescribeNetworkInterfaces
ec2:AttachNetworkInterface
ec2:CreateNetworkInterface
ec2:ModifyNetworkInterfaceAttribute
ec2:DeleteNetworkInterface
In case tiering is configured, additional AWS APIs permissions are given:
s3:DeleteObject
s3:GetObject
s3:PutObject
s3:ListBucket
Additional operations
Once a CloudFormation template has been generated, it is possible to create a stack from it using the AWS console or the AWS CLI.
When the deployment is complete, the stack status will update to CREATE_COMPLETE
and it is possible to access the Weka system cluster GUI by going to the Outputs tab of the CloudFormation stack and clicking the GUI link.
Note: If there is a valid entitlement or PAYG plan in get.weka.io, the stack will attempt creating a license, deploy it to the cluster, and start IO automatically.
With that, a filesystem is created and mounted on all instances. This shared filesystem is mounted on /mnt/weka
in each cluster instance.
If the deployment was unsuccessful, see Troubleshooting for the resolution of common deployment issues.
Last updated