DevOps Classroom notes 16/Mar/2025

ingress controller

AWS Elastic Kubernetes Services (EKS)

  • AWS EKS has following offerings
    • EKS
    • EKS Fargate
    • EKS Anywhere

Creating an eks cluster

  • eksctl is the tool created to create/manage kubernetes clusters
  • Ensure AWS CLI is configured
  • Create an eksctl enabled yaml file
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig

metadata:
  name: learning-cluster
  region: ap-south-1

nodeGroups:
  - name: ng-1
    instanceType: t2.large
    desiredCapacity: 2
  • To create cluster execute eksctl create cluster -f eks.yaml
  • Once this is created the kubeconfig also will be applied
  • To get kubeconfig
aws eks update-kubeconfig --region region-code --name my-cluster
  • We have tried running aks store and it was working

AWS Specific features of k8s

AWS EKS – IAM

  • How to handle user management in AWS EKS
  • To be discussed next week
Published
Categorized as Uncategorized Tagged

By continuous learner

devops & cloud enthusiastic learner

Leave a ReplyCancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Please turn AdBlock off
Plugin for Social Media by Acurax Wordpress Design Studio

Discover more from Direct DevOps from Quality Thought

Subscribe now to keep reading and get access to the full archive.

Continue reading

Exit mobile version
%%footer%%