File tree 1 file changed +35
-0
lines changed
1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change
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
+
You can’t perform that action at this time.
0 commit comments