Lessons with tag: eks

Found 25 results

Search Tips:

To OR search terms: "terraform aws"

To AND search terms: "+terraform +aws"

To filter or reject search terms: "-aws"

Terraspace Cost Estimation: A Few Examples with $1,287/mo EC2 Example and Different EKS Clusters

July 22, 2022
We'll review the Terraspace Cost Estimation instructions and then do something fun. We'll see what some of the example modules from the Terraform Registry costs. The cost estimates 🤣 ec2: $8.39/mo complete ec2 example: $1,287/mo 😱 ecs-spot: $141...
12:31

EKS: Self-Managed Nodes vs Managed Node Group vs AWS Fargate

January 6, 2022
We'll cover the different EKS Nodes and what they mean. Essentially, EKS manages Kubernetes-as-a-Service but this mainly means the Kubernetes control plane. You still need to provide compute nodes to your EKS cluster so they have the capacity to ...
4:12

AWS EKS vs Azure AKS vs Google GKE

December 13, 2021
We'll cover the 3 different Kubernetes offerings from AWS, Azure and Google. We'll walk through each of their consoles, website interfaces, and explore how they work and compare. Repos used to create the 3 different clusters: https://github.com...
15:34

Using Good Kubernetes Namespaces and App Naming Conventions

November 24, 2021
This is a common question that comes up. How should we name our Kubernetes namespaces and app names. Will show my opinion on this and how to best manage and organize your application in Kubernetes namespaces. I walk through the evolution process ...
18:12

EKS Security Groups for Pods

November 22, 2021
Shows show to use AWS Security Groups with Kubernetes Pods. Wanted to mention that there are pros and cons with Pod-level security groups: Pro: Fine-grain control over the security group for all the pods in that deployment. This allows you to ta...
11:54

EKS IAM Role for Service Account IRSA Automation with Kubes

November 22, 2021
Shows how to automate the creation of the AWS IAM Role and Kubernetes Service Account YAML with kubes. If you're getting started with IRSA, watch the EKS IAM Role for Service Account IRSA Introduction first. You can confirm that IRSA has been set...
12:04

EKS IAM Role for Service Account IRSA Introduction

November 21, 2021
Introduces IRSA, IAM Role for Service Account. This allows pods to use IAM Roles to authenticated and use AWS APIs. The advantage is then you don't have to manage and rotate the AWS Access Keys in the future. You can confirm that IRSA has been se...
12:15

EKS Kubernetes Dashboard Install and Walkthrough Tutorial

November 21, 2021
Show how to install the Kubernetes Dashboard and compares it to the EKS console dashboard. Links: AWS Docs Tutorial: Deploy the Kubernetes Dashboard (web UI)
9:02

EKS RBAC Adding Users And Granting Access to Cluster with Terraspace Infrastructure as Code

November 21, 2021
Shows how to add additional IAM users with Terraspace and Terraform. We'll codify the IAM users who can access the cluster. Links: AWS Docs: Managing users or IAM roles for your cluster Terraform Registry Module: terraform-aws-modules/eks/aws G...
4:34

EKS RBAC Adding Users And Granting Access to Cluster

November 21, 2021
Show how to add additional IAM users so they can also user the EKS cluster. Links: AWS Docs: Managing users or IAM roles for your cluster
6:15

EKS RBAC: An Approach and Strategy with Examples

November 21, 2021
Shows an RBAC management approach and strategy. We cover ClusterRole, ClusterRoleBinding, Role, and RoleBinding. The setup looks like this: Users User Description test-admin Full access to all resources. test-read-all Read access to all...
14:50

Terraspace: EKS Spot Cluster with the Terraform Registry

November 20, 2021
We'll create an EKS Spot cluster. This is very useful to testing and savings 50% to 90% vs on-demand. Links: Terraform Registry EKS Module: terraform-aws-modules/eks/aws GitHub: boltops-learn/terraspace-aws-eks
15:08

Terraform Registry EKS Module Code Review and Summary

November 20, 2021
We'll review and quickly figure out what the Terraform Registry EKS module creates by using grep. Useful greps grep '^resource' modules/fargate/*.tf grep '^resource' modules/node_groups/*.tf grep '^resource' *.tf grep '^module "' *.tf Links: T...
3:54
free lesson

Terraspace: EKS AWS Fargate Cluster with the Terraform Registry

November 20, 2021
We'll walk through creating an EKS cluster with Terraspace using the very popular eks module from the Terraform registry. We'll review: VPC created by Terraform. EKS Cluster and Fargate Profiles. Notes: Here's a cheatsheet of useful commands....
17:39

Terraspace: EKS Managed Nodes Cluster with the Terraform Registry Module

November 19, 2021
We'll walk through creating an EKS cluster using the very popular eks module on the Terraform registry. We'll review: VPC created by Terraform. EKS Cluster and Managed Node Groups. Links: Terraform Registry EKS Module: terraform-aws-modules/...
11:28

EKS Managed Nodes Cluster with the AWS Console and CLI: Popular Choice Among EKS Users

November 19, 2021
We'll walk through creating an EKS cluster with the AWS Console and CLI. We'll create a EKS powered by Managed Nodes. Creating the EKS Cluster this way really helps to learn about the underlying components required to make an EKS Cluster. It help...
23:11

EKS Fargate Cluster with AWS Console and CLI: Manual Creation From the Docs

November 19, 2021
We'll walk through creating an EKS cluster with the AWS Console and CLI. We'll create a EKS powered by Fargate. Creating the EKS Cluster this way really helps to learn about the underlying components required to make an EKS Cluster. It helps with...
27:35

EKS Fargate Cluster with eksctl

November 18, 2021
We'll walk through creating an EKS cluster with the eksctl tool. We'll create a EKS powered by Fargate. To help learn about the eksctl tool and we'll explore and review what gets created: CloudFormation Stacks VPC Network EKS Cluster Links: ...
14:04

The eksctl Docs Walkthrough

November 18, 2021
We'll walk through the eksctl Docs. The eksctl tool is a powerful way to create and managed EKS clusters. There's a lot more to the tool than the AWS docs can cover. By walking through the docs site, you'll learn where you'll need to go to use the...
7:46

EKS AWS Application Load Balancer with Ingress Resource

October 9, 2021
Learn how to create an AWS Application Load Balancer with a Kubernetes Ingress Resource. Links: GitHub: boltops-learn/kubernetes-examples aws/alb
4:39

EKS AWS Network Load Balancer with Service Resource

October 9, 2021
Learn how to create an AWS Network Load Balancer with a Kubernetes Service Resource. Links: GitHub: boltops-learn/kubernetes-examples aws/nlb
3:55

EKS AWS Load Balancer Controller Setup

October 9, 2021
Learn how to set up the EKS AWS Load Balancer Controller plugin. It's the control loop that is needed to create Network Load Balancers with a Kubernetes Service Resource. And it's also used to create an Application Load Balancers with an Kubernete...
6:32

EKS AWS Load Balancers Overview

October 9, 2021
Learn about the different AWS Load Balancers and how they map to EKS Kubernetes resources like Service and Ingress Resources. Kubernetes Service resources are layer 4 load balancers. Kubernetes Ingress resources are layer 7 load balancers. AWS has...
3:14

EKS AWS Classic Load Balancer with Service LoadBalancer Type Resource

October 9, 2021
Learn how to create an external public facing load balancer with the simple Service Type LoadBalancer. This creates an AWS Classic Load Balancer. Links: GitHub: boltops-learn/kubernetes-examples aws/clb
7:18

EKS Managed Nodes Cluster with eksctl

October 9, 2021
We'll walk through creating an EKS cluster with the eksctl tool. We'll create a EKS powered by Managed Nodes. To help learn about the eksctl tool and we'll explore and review what gets created: CloudFormation Stacks VPC Network EKS Cluster EC2 ...
16:55
free lesson

BoltOps Tools