Lessons with tag: kubernetes

Found 62 results

Search Tips:

To OR search terms: "terraform aws"

To AND search terms: "+terraform +aws"

To filter or reject search terms: "-aws"

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

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

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

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

Setting up Jenkins on GKE

November 12, 2021
We'll create a GKE cluster and set up Jenkins via helm. Links: Google Cloud Docs: Setting up Jenkins on Google Kubernetes Engine
8: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

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

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

How to Create a Google GKE Cluster with Console or CLI

October 23, 2021
Shows you how to create a GKE Cluster following the Google Docs Console instructions. This is a good place to start if you're starting off with GKE for the first time. Getting familiar with the Google Console helps establish fundamentals. Relevan...
17:03
free lesson

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

k alias for kubectl

October 20, 2021
One of my favorite aliases. Spares you from typing kubectl over and over. We'll cover the bash and zsh shell setup. Links: GitHub: boltops-learn/kubernetes-tips k-alias
1:03

kubectl autocompletion

October 20, 2021
Shows you how to set up kubectl autocompletion and a demonstration of how it works. Links: GitHub: boltops-learn/kubernetes-tips autocompletion
2:40
free lesson

kube ps1 zsh prompt

October 20, 2021
Shows you how to set up kubectl prompt for zsh. Links: GitHub: boltops-learn/kubernetes-tips zsh-prompt.sh
4:11
free lesson

kube ps1 bash prompt

October 20, 2021
Shows you how to set up kubectl prompt for bash. Links: GitHub: boltops-learn/kubernetes-tips bash-prompt.sh
5:07
free lesson

kubectx and kubens vs kubectl

October 16, 2021
Introduces kubectx and kubens and how they save you time over typing kubectl. Links: GitHub: boltops-learn/kubernetes-tips kubectx
6:44
free lesson

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

Kubes GKE Ingress HTTPS External Load Balancer with a Manually Secret Resource

October 16, 2021
Shows you how to create an Google External Load Balancer and with a pre-created Kubernetes TLS Secret. Links: GitHub: boltops-learn/kubes-examples google/elb7-https-secret-manual
11:41

Kubernetes Kubes Tool Review

October 12, 2021
We'll learn about the Kubes tool and show you how it works. Kubes focuses on deploying your specific application code. We'll cover: What Kubes does. How it handles "overlays" or multiple environments. How it supports templating. It's a mixture o...
10:34

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

Kubernetes Helm Intro: dev and prod

October 11, 2021
We'll learn about the Helm package manager tool and show you how it works. We'll cover: Deploy an app as a Helm Chart for different environments like dev and prod We'll introduce the Helm templating language: Sprig Links: GitHub: boltops-lea...
11:44
free lesson

Kubernetes Kustomize Intro: overlays dev and prod

October 11, 2021
We'll learn about the Kustomize tool and show you how it works. We'll cover: basic intro with no overlays common intro with overlays: dev and prod envs Links: GitHub: boltops-learn/kubernetes-examples examples/kustomize-intro
16:25
free lesson

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 Tools: Kustomize vs Helm vs Kubes

October 11, 2021
We'll give an overview and compare some Kubernetes Deploy tools: Kustomize, Helm and Kubes. Kustomize is a YAML purist approach. Helm is really more like a package manager. Kubes is an application-focused deployment tool.
9:31

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

BoltOps Tools