Skip to content

Commit b1728cd

Browse files
author
ranjeet-pivotchain
committed
aws-devops
1 parent f8a171c commit b1728cd

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

aws-devops/aws-eks/REAMDME.md

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
Creating Kubernetes cluster on the AWS CLOUD--> Service name--> EKS
2+
3+
Below are the steps to create the EKS Cluster.
4+
5+
1] Create the VPC.
6+
7+
2] Create IAM role for EKS Cluster:
8+
IAM --> Role --> EKS --> ROLE-NAME
9+
10+
3] Create the EKS Cluster on AWS Dashboard (While creating it, attach the role created in second steps.)
11+
12+
4] Access EKS cluster from your machine
13+
- install kubectl, aws cli,
14+
- configure aws cli(aws configure,)
15+
16+
17+
<!--
18+
aws configure --profile PROFILE-NAME
19+
aws configure list-profiles
20+
export AWS_PROFILE=PROFILE-NAME
21+
aws sts get-caller-identity
22+
aws eks describe-cluster --name CLUSTER-NAME --region us-east-2
23+
aws eks update-kubeconfig --region us-east-2 --name CLUSTER-NAME
24+
kubectl get nodes
25+
kubect get pods
26+
-->
27+
28+
5] Create the New IAM role for workernodegroup:
29+
30+
IAM --> Role --> EKS --> AmazonEKS_CNI_Policy --> AmazonEKSWorkerNodePolicy --> AmazonEC2ContainerRegistryReadOnly --> ROLE-NAME
31+
32+
6] Create the EKS workernodegroup on AWS Dashboard (While creating it, attach the role created in 5th steps.)
33+
34+
7] Once workernodegrp ready u r good to go to deploy application on it...
35+

0 commit comments

Comments
 (0)