//Cloud notes from my desk -Maheshk

"Fortunate are those who take the first steps.” ― Paulo Coelho

#KubeCon CNCF – North America 2019 watchlist

(1) Kubecon – KEDA: Event Driven and Serverless Containers in Kubernetes – Jeff Hollan, Microsoft
(2) Supercharge Your Microservices CI/CD with Service Mesh and Kubernetes – Brian Redmond, Microsoft
(3) Scaling Your Cluster (Both Ways) – Scott Coulton & Patrick Chanezon, Microsoft (HPA) – 2 types – VM (nodes) and Virtual Kubelet

(4) Intro: Linkerd – William Morgan, Buoyant

(5) How the Department of Defense Moved to Kubernetes and Istio – Nicolas Chaillan

(6) Am I Using It Right? Checking Best Practices on Live Kuber… Varsha Varadarajan & Adam Wolfe Gordon

(7) Gone in 60 Minutes: Migrating 20 TB from AKS to GKE in an Hour with Vitess – Derek Perkins, Nozzle
(8) Tinder’s Move to Kubernetes – Chris O’Brien & Chris Thomas, Tinder

(9) Kubernetes at Reddit: Tales from Production – Greg Taylor, Reddit, Inc

(10) Introduction to Virtual Kubelet – Featuring Titus by Netflix – Ria Bhatia & Sargun Dhillon
(11) Going Beyond the Node – Using VK to Realize Crazy Ideas – Brian Goff & Deep Kapur

(12) Day 2 Operations with Windows Containers – Michael Michael, VMware & Patrick Lang, Microsoft
(13) Introduction to Windows Containers in Kubernetes – Michael Michael, VMware & Deep Debroy, Docker
(14) Keynote: The Long Road to IPv4/IPv6 Dual-stack Kubernetes – Tim Hockin & Khaled (Kal) Henidak

Here is the complete recording list – (1) KubeCon + CloudNativeCon North America 2019 (327 Videos)  (2) Thanks to cloudyuga for the organized list of  videos and slides on Kubecon’19 San Diego

PS: Stricken once are watched for my tracking. 

2019-11-27 Posted by | kubecon, Kubernetes, Uncategorized | | Leave a comment

AKS CLI Sheetcheat for the labs

az login
az account show
az account select –subscription SUBSCRIPTION_NAME
az group create –name k8s –location eastus2
az aks get-versions –location eastus2 -o table
az aks create –resource-group k8s –name my-cluster –kubernetes-version 1.14.6 –location eastus2 –node-count 3 –generate-ssh-keys
az aks get-credentials –resource-group k8s –name my-cluster
kubectl get nodes
kubectl cluster-info
Download – https://github.com/Azure-Samples/azure-voting-app-redis
mkdir voting-app
cd voting-app
wget https://raw.githubusercontent.com/Azure-Samples/azure-voting-app-redis/master/azure-vote-all-in-one-redis.yaml
kubectl apply -f azure-vote-all-in-one-redis.yaml
kubectl get pods
kubectl get svc / kubectl get svc -w
az group delete –name k8s

2019-11-25 Posted by | Uncategorized | Leave a comment