Steps to access EKS cluster¶
Login into AWS console from the Event Engine dashboard¶
Remeber to only use "ap-southeast-1" as your region
Select EC2 from Management Console and select Instances (running). You should see a EC2 instance called SplunkWorkshop-box
Now select SplunkWorkshop instance and select connect
Verify EKS cluster¶
Select EC2 Instance Connect tab and click connect. This will open an SSH session to the EC2 instance. Once the instance is opened check the running EKS cluster. You should see a cluster named
eksctl get cluster --region ap-southeast-1
Update Kubectl¶
aws eks --region ap-southeast-1 update-kubeconfig --name eksworkshop-eksctl
Test Kubectl¶
kubectl get nodes
Install Helm 3¶
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh
Get Workshop content¶
wget https://github.com/splunk/imt-workshop/archive/refs/heads/master.zip
unzip master.zip
mv imt-workshop-master workshop
Last update: June 9, 2021