Start ArangoDB on Amazon Elastic Kubernetes Service (EKS)
Refer to the to accordingly fill in the below with your credentials. Pay special attention to the correct region information to find your cluster next.
$ aws configure
AWS Access Key ID [None]: AKIAIOSFODNN7EXAMPLE
AWS Secret Access Key [None]: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
Default region name [None]: us-west-2
Default output format [None]: json
Verify that you can see your cluster listed, when authenticated
$ aws eks list-clusters
{
"clusters": [
"ArangoDB"
]
}
You should be able to verify the ACTIVE
state of your cluster
$ aws eks describe-cluster --name ArangoDB --query cluster.status
Integrate kubernetes configuration locally
It’s time to integrate the cluster into your local kubernetes configurations
$ aws eks update-kubeconfig --name ArangoDB
Added new context arn:aws:eks:us-west-2:XXXXXXXXXXX:cluster/ArangoDB to ...
At this point, we are ready to use kubectl to communicate with the cluster.
$ kubectl get nodes
Create worker Stack
On Amazon EKS, we need to launch worker nodes, as the cluster has none. Open Amazon’s cloud formation console and choose Create Stack
by specifying this S3 template URL:
https://amazon-eks.s3-us-west-2.amazonaws.com/cloudformation/2018-08-30/amazon-eks-nodegroup.yaml
Worker stack details
Pay good attention to details here. If your input is not complete, your worker nodes are either not spawned or you won’t be able to integrate the workers into your kubernetes cluster.
Stack name: Choose a name for your stack. For example ArangoDB-stack
ClusterControlPlaneSecurityGroup: Choose the same SecurityGroups value as above, when you create your EKS Cluster.
NodeGroupName: Enter a name for your node group for example ArangoDB-node-group
NodeAutoScalingGroupMinSize: Minimum number of nodes to which you may scale your workers.
NodeAutoScalingGroupMaxSize: Nomen est omen.
NodeInstanceType: Choose an instance type for your worker nodes. For this test we went with the default t2.medium
instances.
NodeImageId: Dependent on the region, there are two image Ids for boxes with and without GPU support.
KeyName: SSH key pair, which may be used to ssh into the nodes. This is required input.
VpcId: The same VPCId, which you get using aws eks describe-cluster --name <your-cluster-name> --query cluster.resourcesVpcConfig.vpcId
Subnets: Choose the subnets that you created in Create your Amazon EKS Cluster VPC.
Wait for stack to get ready
Note down NodeInstanceRole
Once stack is ready, navigate at the bottom to the Outputs pane and note down the NodeInstanceRole
Integrate worker stack as Kubernetes nodes
Download the configuration map here:
$ curl -O https://amazon-eks.s3-us-west-2.amazonaws.com/cloudformation/2018-08-30/aws-auth-cm.yaml
Modify
data|mapRoles|rolearn
to match theNoteInstanceRole
, you acquired after your node stack was finishedDeploy node integration
$ kubectl apply -f aws-auth-cm.yaml
Monitor and watch your nodes to be ready
Setup helm
Create service account for
tiller
$ kubectl create serviceaccount --namespace kube-system tiller
serviceaccount/tiller created
Allow
tiller
to modify the cluster$ kubectl create clusterrolebinding tiller-cluster-rule \
--clusterrole=cluster-admin --serviceaccount=kube-system:tiller
clusterrolebinding.rbac.authorization.k8s.io/tiller-cluster-rule created
Initialize
helm
$ helm init --service-account tiller
$HELM_HOME has been configured at ~/.helm.
...
Happy Helming!
Deploy ArangoDB cluster
Wait for cluster to become ready
Get LoadBalancer
address from below command to access your Coordinator.
Do not forget to immediately assign a secure database root
password once on Coordinator