Skip to content

sirkells/aws-eks-kubernetes-masterclass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AWS Fargate & EKS (Elastic Kubernetes Service) - Masterclass

Course Modules

Docker Images

Topics Docker Image
Kube Fundamentals - Pods stacksimplify/kubenginx:1.0.0
Kube Fundamentals - Replica Sets stacksimplify/kube-helloworld:1.0.0
Kube Fundamentals - Deployments stacksimplify/kube-helloworld:1.0.0, 2.0.0, 3.0.0, 4.0.0
Kube Fundamentals - Services stacksimplify/kube-frontend-nginx:1.0.0, stacksimplify/kube-helloworld:1.0.0
AWS ECR Integration 180789647333.dkr.ecr.us-east-1.amazonaws.com/aws-ecr-kubenginx:1.0.0

AWS Services - Covered as part of this course

  1. AWS Elastic Kubernetes Service - EKS
  2. AWS EKS Fargate (Serverless)
  3. AWS Elastic Container Registry - ECR
  4. AWS Elastic Block Storage - EBS
  5. AWS Elastic File Storage - EFS
  6. AWS VPC - Virtual Private Cloud
  7. AWS ELB - Elastic Load Balancer
    • CLB - Classic Load Balancer
    • NLB - Network Load Balancer
    • ALB - Application Load Balancer
  8. AWS RDS - Relation Database Service
  9. AWS EC2 Instances
  10. AWS EC2 Autoscaling
  11. AWS AppMesh
  12. AWS X-Ray
  13. AWS CloudFormation
  14. AWS CloudWatch
  15. AWS CloudTrial
  16. AWS Parameter Store (for secrets - CICD)
  17. AWS Lambda (For secrets - CICD)

AWS EFS with EKS

  1. AWS Datasync
  2. AWS S3 Buckets
  3. AWS EFS
  4. Cerficate Manager (For ALB SSL)
S.No AWS Services S.No Kubernetes Concepts
1. AWS EKS - Elastic Kubernetes Service 1. Pods
2. AWS EKS - Fargate (Serverless) 2. ReplicaSets
3. AWS ECR - Elastic Container Registry 3. Deployments
4. AWS EBS - Elastic Block Store 4. Services - NodePort
5. AWS EFS - Elastic File Store 5. Services - ClusterIp
6. AWS VPC - Virtual Private Cloud 6. Imperative & Delcarative ways to create k8s objects
7. AWS ELB - Elastic Load Balancer - ALB 7. YAML Basics - for writing k8s manifests

Kubernetes Topics - For Preparation

Foundation

  • YAML Basics

Kube Core Topics

  • PODs
  • Deployments
  • Services
  • Volumes
  • ConfigMaps
  • Replication Controller or Replica Sets
  • Declarative commands (kubectl)
  • Live Template writing for PODS, Deployments & Services

AWS EKS Topics

  • Create Cluster
    • AWS Management Console
    • eksctl
  • Worker Nodes
    • Launch a Worker Node (Linux)
    • Managed Node Groups (MNG)
      • Updating (Patching) Managed Node Groups
      • Editing Managed Node Groups
      • Managed Node Group ERRORS
      • Deleting MNG
  • Storage
    • EBS CSI Driver
    • EFS CSI Driver
  • Autoscaling
    • Cluster Autoscaler
    • Horizontal Pod Autoscaler
    • Vertical Pod Autoscaler
  • Load Balancing and Ingress
    • Load Balancing (CLB, NLB)
    • ALB Ingress Controller
  • Networking
    • Creating a VPC for EKS
    • Cluster VPC Considerations
    • EKS Security Group Considerations
    • Understand Pod Networking
    • CoreDNS (Already exists in new clusters - just intro about it will suffice)
    • Calico (Multi-tenant environment - not needed)
  • Managing Cluster Authentication (Optional)
    • Important Topic - Managing Users or IAM Roles for your cluster
  • Guest Book Application
  • Metrics Server
  • Prometheus Metrics
  • Using Helm
  • Deploy Kubernetes Dashboard
  • AppMesh Integration with Kubernetes
  • Security (IAM role to Kubernetes Service Accounts)
    • IAM
    • Pod Security Policy
  • CloudTrial
  • AWS Fargate (LAST)
    • Important Note: Pods running on Fargate are only supported on private subnets (with NAT gateway access to AWS services, but not a direct route to an Internet Gateway), so your cluster's VPC must have private subnets available.
    • Stateful applications are not recommended for pods running on Fargate.
    • Daemonsets are not supported on Fargate.
    • GPUs are currently not available on Fargate.
  • Troubleshooting

Monitoring & Logging

  • CloudWatch
  • CloudTrail
  • AWS X-Ray

Kube Tools

Kube Topics List

Series -1

  • Cluster Setup (AWS)
  • Architecture
  • PODS
  • Deployments
  • Services
  • ReplicaSets
  • YAML

Series-2

  • ConfigMaps
  • Resources
  • Containers
  • P Volume Claims
  • Networking
  • Taints &

Series-3

  • Ingress
  • Secrets
  • Persistent Volumes
  • Security

Series-4

  • StatefulSets
  • Storage
  • Administration
  • Federation
  • Jobs

Local Dev MySQL Server

docker run --name mysql-dev -p 3306:3306 -e MYSQL_ROOT_PASSWORD=redhat -d mysql:latest
docker stop mysql-dev
docker rm mysql-dev
docker exec -it mysql-dev bash

# Docker network
docker network ls

# Connect to MySQL
docker run -it --network some-network --rm mysql mysql -hsome-mysql -uexample-user -p
docker run -it --network host --rm mysql mysql -hmysql-dev -uroot -p

About

AWS EKS Kubernetes - Masterclass | DevOps, Microservices

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 96.9%
  • HTML 2.3%
  • Dockerfile 0.8%