Installing Using Terraform
Prerequisites
Azure CLI: Instructions can be found here.
Terraform: Instructions can be found here.
Git: Instructions can be found here.
Clone our Terraform Repository
Use git to clone our repository to a suitable location.
Prepare Deployment
There are just a few steps to prepare for the deployment
Update Configuration
Copy an example tfvars of your choice from the
example
directory i.e. if you would like to deploy a ZebClient VM converged cluster, then copy therhel-converged.tfvars
.
Update the following items:
prefix
: Your cluster's namezebclient_license_key
: This can be found in the Zebware Customer Portal under Home -> View License Details (in license card) -> License Detailszebclient_mount_point
(Optional): Sets the mount point name used by ZebClient when mounting in the agent nodes. Defaults to/fs/
ssh_source_address_prefixes
: This should be set to the whitelisted IP address that can access the cluster once deployed. This can be refined later in the Azure portalzebclient_cluster_mode
: This variable value has already been preset according to the cluster mode. So, you shouldn't change this value. However, please refer to this page to know more about available modes and their descriptions.netdata_claim_token
(Optional): We make use of Netdata internally. To automatically add your installation to Netdata, you can add your claim token herenetdata_claim_room
(Optional): We make use of Netdata internally. To automatically add your installation to a Netdata war room, you can add your room claim token herelocation
: Azure region
You have to make sure Azure region that you choose supports availability zones, otherwise deployment will fail. Read more about Azure availability zones here.
Initialize Terraform
Run the following command to initialize Terraform
Deploy
Run the following commands to plan and apply the deployment within the zebclient-azure
directory.
The sample out below provides the public IP address of the management node. You can use the SSH keypair generated to SSH into this management node.
In order to retrieve the SSH keypair, run the following command
Make sure to store your Key Pairs in a safe and secure location.
Post-Installation
From here you can either check the installation or jump straight to running your first tests.
Checking InstallationRunning First TestLast updated