Storage and Ingress Setup
AWS gp3 Storage Class
Install only if your EKS cluster does not have AWS gp3 storage class:
kubectl apply -f storage-class/storageclass-aws-gp3.yaml
Nginx Ingress Controller
Install only if your EKS cluster does not have Nginx Ingress Controller:
-
Create namespace:
kubectl create namespace ingress-nginx -
Install Nginx Ingress:
helm upgrade --install ingress-nginx ingress-nginx/. \
-n ingress-nginx \
--values ingress-nginx/values-aws.yaml \
--wait --timeout 900s \
--dependency-update
Next Steps
Proceed to Data Layer installation.