Lessons with tag: kubernetes

Found 41 results

Search Tips:

To OR search terms: "terraform aws"

To AND search terms: "+terraform +aws"

To filter or reject search terms: "-aws"

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 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 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 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

Kubernetes: kubectl logs command

October 9, 2021
Learn useful tips about the kubectl logs command. This is how you can see your container logs. Links: GitHub: boltops-learn/kubernetes-examples
3:47

Kubernetes: kubectl exec command

October 9, 2021
Learn how exec or "ssh" into a container and so you can do live debugging and make live modifications. Links: GitHub: boltops-learn/kubernetes-examples
3:12

Kubernetes: Learn About More Resource Types

October 9, 2021
There's a lot more Kubernetes resources out there than just Deployment and Service. We'll cover mroe commmon ones and also show you with the kubectl api-resources command how you can list them all. Links: GitHub: boltops-learn/kubernetes-exampl...
5:13

Kubernetes: ConfigMap Resource

October 10, 2021
Learn about the Kubernetes ConfigMap Resource. This is what you can use to store non-sensitive key-value variables and use them in your container. Links: GitHub: boltops-learn/kubernetes-examples examples/config_map
5:00

Kubernetes: Secret Resource

October 11, 2021
Learn about the Kubernetes Secret Resource. This is what you can use to store sensitive key-value variables and use them in your container. Links: GitHub: boltops-learn/kubernetes-examples examples/secret
6:22

Kubernetes kubectl explain Command: How to Find YAML Schema Fields Available

October 11, 2021
Learn how to use the kubectl explain command. It'll show you what fields are available for your Kubernetes YAML Resource files. Notes: kubectl explain kubectl api-resources Links: GitHub: boltops-learn/kubernetes-examples
4:03

Kubernetes: kubectl get describe config Commands

October 12, 2021
Learn useful debugging tips with the kubectl get, kubectl describe, and kubectl config commands. kubectl get commands: kubectl get all kubectl get all -o wide kubectl get all --show-labels kubectl get all --show-labels -l app=demo kubectl get all...
6:31

Kubes GKE Ingress HTTPS External Load Balancer with an Automatically Created Secret Resource

October 16, 2021
Shows you how to create an Google External Load Balancer and codified the Kubernetes TLS Secret Resource. Links: GitHub: boltops-learn/kubes-examples google/elb7-https-secret-auto
8:08

GKE Ingress HTTPS External Load Balancer with Secret Resource (Manually Created)

October 21, 2021
Shows you how to setup a HTTPS External Load Balancer with using a Secret Resource that is manually created. Using plain Kubernetes YAML files to create resources in this video. Links: Google Cloud Docs: Specifying certificates for your Ingress...
8:48

GKE Ingress HTTPS Internal Load Balancer Kubernetes Example

November 2, 2021
Shows you how to setup a GKE Ingress HTTPS Internal Load Balancer with plain Kubernetes YAML files Links: GitHub: boltops-learn/kubernetes-examples google/ilb-https-pre-shared Google Kubernetes Internal Load Balancer Ingress Docs
14:06

GKE Ingress External HTTPS Load Balancer and pre-shared Google SSL Cert Kubernetes Example

November 2, 2021
Shows you how to setup a GKE Ingress External HTTPS Load Balancer and pre-shared Google SSL Cert Kubernetes Example. Using plain Kubernetes YAML files to create resources in this video. Links: GitHub: boltops-learn/kubes-examples elb7-https-pr...
11:53

Jenkins Kubernetes Plugin Configure Cloud

November 12, 2021
We'll configure the Kubernetes Plugin to use the GKE cluster as the Cloud. So pods will be used as the slave agent.
2:52

Jenkins Test Pipeline - Confirm Kubernetes Plugin Cloud Setup Right

November 12, 2021
Will create a simple Jenkins Test Pipeline. This confirms that the Kubernetes Cloud Plugin is setup properly. Links: Jenkins Pipeline Syntax Docs GitHub: boltops-learn/jenkins-pipeline
4:15

Kaniko Getting Started Tutorial Demo

November 15, 2021
Shows you how to use kaniko to build docker images in a Kubernetes cluster. Links: GitHub: boltops-learn/kaniko-tutorial-demo GitHub: GoogleContainerTools/kaniko tutorial.md
13:01

Terraspace GKE Cluster with the google_container_cluster Terraform Resource

November 15, 2021
We'll build a GKE cluster with the terraform google_container_cluster resource method. Links: GitHub: boltops-learn/terraspace-google-gke-hashicorp-guide Terraform Docs google_container_cluster boltops-learn/kubernetes-examples
10:11

Terraspace GKE Cluster with the Terraform Registry Module

November 16, 2021
We'll build a GKE cluster with the popular Terraform Registry Module written by Google. Links: GitHub: boltops-learn/terraspace-google-gke-registry terraform-google-modules/kubernetes-engine
15:43

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

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 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 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 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

BoltOps Tools