
Q-Bits: Creating A Helm Chart Using Amazon Q Developer
Learn how to use the latest capabilities of Amazon Q Developer to create and deploy a Helm chart to an Amazon EKS cluster.
- First, make sure your kubectl context is configured for your EKS cluster
1
aws eks update-kubeconfig --name your-cluster-name --region your-region
- Create a namespace for your application (optional, but recommended)
1
kubectl create namespace hello-aws
- Add the AWS Load Balancer Controller if you haven't already (required for ALB ingress)
1
2
helm repo add eks https://aws.github.io/eks-charts
helm repo update eks
- Install the AWS Load Balancer Controller (if not already installed)
1
2
3
4
helm install aws-load-balancer-controller eks/aws-load-balancer-controller \
-n kube-system \
--set clusterName=<<CLUSTER_NAME>> \
--set serviceAccount.create=true
- Install your Helm chart
1
2
helm install hello-aws ./hello-aws \
--namespace hello-aws
- Verify the deployment
1
2
3
4
5
6
7
8
# Check pods
kubectl get pods -n hello-aws
# Check the ingress
kubectl get ingress -n hello-aws
# Check services
kubectl get svc -n hello-aws
Any opinions in this post are those of the individual author and may not reflect the opinions of AWS.