SlideShare a Scribd company logo
@bridgetkromhout #hashiconf
day 2 k8s
tools for operability
@bridgetkromhout #hashiconf
lives:
Minneapolis,
Minnesota
works:
Microsoft
podcasts:
Arrested
DevOps
organizes:
devopsdays
Bridget Kromhout
@bridgetkromhout #hashiconf
Sadly, my co-presenter Zach Deptawa
isn’t able to be here today!
Tweet get-well wishes to
him if you like!
“Get well soon, @zdeptawa!
#hashiconf”
@bridgetkromhout #hashiconf
Outline
1.what even are containers & k8s?
2.tools in the k8s ecosystem
3.the future
@bridgetkromhout #hashiconf
Spoilers
1.what even are containers & k8s?
2.tools in the k8s ecosystem
3.the future
@bridgetkromhout #hashiconf
what even are containers & k8s?
“And you may ask yourself,
‘Well... how did I get here?’”
Talking Heads — Once in a Lifetime
@bridgetkromhout #hashiconf
“containers
aren’t real”
— @jessfraz
@bridgetkromhout #hashiconf
Namespaces Cgroups
Not a real thing. An application delivery mechanism with
process isolation based on several Linux kernel features.
• PID
• Mount
• Network
• UTS
• IPC
• User
• Cgroup
• Memory
• CPU
• Blkio
• Cpuacct
• Cpuset
• Devices
• Net_prio
• Freezer
(what a process can see) (what a process can use)
What is a container?
@bridgetkromhout #hashiconf
consistent development repeatable deployment
containers solve problems
containers solve problems
@bridgetkromhout #hashiconf
don’t
all
@bridgetkromhout #hashiconf
once upon a time…
@bridgetkromhout #hashiconf
1979 (Version 7)

1982 (BSD)
20042000
chroot FreeBSD jails Solaris Zones LXC
2008
containers: early days
@bridgetkromhout #hashiconf
containers: becoming mainstream
2011
Cloud Foundry
2013
Docker
2014
Rocket (later rkt)
2015
OCI
@bridgetkromhout #hashiconf
“Kubernetes is an open-source
platform designed to automate
deploying, scaling, and operating
application containers."
Initial release: 7 June 2014
@bridgetkromhout #hashiconf
orchestrating containers: a tool, not a goal
@bridgetkromhout #hashiconf
tools in the k8s ecosystem
“If you are confused, check with the sun
Carry a compass to help you along”
R.E.M. — Stand
@bridgetkromhout #hashiconf
Image credit: James Ernest
@bridgetkromhout #hashiconf
elements of orchestration
Scheduling
Affinity/
anti-affinity
Health
monitoring Failover
Scaling Networking Service
discovery
Coordinated
app upgrades
@bridgetkromhout #hashiconf
Portable
Public,
private,
hybrid,
multi-cloud
Extensible
Modular,
pluggable,
hookable,
composable
Self-healing
Auto-placement,
auto-restart,
auto-replication,
auto-scaling
Kubernetes: a choice for orchestration
@bridgetkromhout #hashiconf
@bridgetkromhout #hashiconf
@bridgetkromhout #hashiconf
@bridgetkromhout #hashiconf
Deploy your
applications
quickly and
predictably
Scale your
applications
on the fly
Roll out 

new features
seamlessly
Limit hardware usage
to required resources
Kubernetes: empowering you to do more
@bridgetkromhout #hashiconf
“day 2 k8s” - what do we mean?
1.You’re sold on k8s; what’s next?
2.necessarily opinionated…
3.…yet giving you info to decide.
@bridgetkromhout #hashiconf
operable k8s: next steps
-Getting started with Terraform & AKS
-Managing configs with Helm & apps with Draft
-Event-driven scripting with Brigade & Kasti
@bridgetkromhout #hashiconf
Providers include Azure and Azure Stack.
Deploy k8s clusters, pods, and services!
https://registry.terraform.io/search?q=azurerm
Terraform & Azure
@bridgetkromhout #hashiconf
Terraform Module Registry and Microsoft Azure
@bridgetkromhout #hashiconf
@bridgetkromhout #hashiconf
Simplify the deployment, management,
and operations of Kubernetes
Work how you 

want with open-
source APIs
Scale and run
applications with
confidence
Focus on your
containers not the
infrastructure
Azure Kubernetes Service (AKS)
@bridgetkromhout #hashiconf
Get started easily
$ az aks create -g myResourceGroup -n myCluster --generate-ssh-keys
 Running ..
$ az aks install-cli
Downloading client to /usr/local/bin/kubectl ..
$ az aks get-credentials -g myResourceGroup -n myCluster
Merged "myCluster" as current context ..
$ kubectl get nodes
NAME                   STATUS    AGE       VERSION
aks-mycluster-36851231-0   Ready     4m       v1.8.1
aks-mycluster-36851231-1   Ready     4m       v1.8.1
aks-mycluster-36851231-2   Ready     4m       v1.8.1
Azure Kubernetes Service (AKS)
@bridgetkromhout #hashiconf
Manage an AKS cluster
$ az aks list –o table
Name Location ResourceGroup KubernetesRelease ProvisioningState
------------------ ---------- -------------- ------------------- -------------------
myCluster westus2 myResourceGroup 1.7.7 Succeeded
$ az aks upgrade -g myResourceGroup -n myCluster –-kubernetes-version 1.8.1
 Running ..
$ kubectl get nodes
NAME                   STATUS    AGE       VERSION
aks-mycluster-36851231-0   Ready     12m       v1.8.1
aks-mycluster-36851231-1   Ready     8m       v1.8.1
aks-mycluster-36851231-2   Ready     3m       v1.8.1
$ az aks scale -g myResourceGroup -n myCluster --agent-count 10
 Running ..
Azure Kubernetes Service (AKS)
@bridgetkromhout #hashiconf
Helm
@bridgetkromhout #hashiconf
Find, share, and use software built for k8s
Manage complexity Easy updates
Simple sharing Rollbacks
Helm
@bridgetkromhout #hashiconf
The best way to find, share, and use
software built for Kubernetes
Manage complexity
Charts can describe complex apps;
provide repeatable app installs, and
serve as a single point of authority
Helm
@bridgetkromhout #hashiconf
The best way to find, share, and use
software built for Kubernetes
Easy updates
Take the pain out of updates with
in-place upgrades and custom hooks
Helm
@bridgetkromhout #hashiconf
The best way to find, share, and use
software built for Kubernetes
Simple sharing
Charts are easy to version, share,
and host on public or private servers
Helm
@bridgetkromhout #hashiconf
Rollbacks
Use helm rollback to roll back to an
older version of a release with ease
Helm
The best way to find, share, and use
software built for Kubernetes
@bridgetkromhout #hashiconf
Simple app development and deployment
– into any Kubernetes cluster
Simplified development
Using two simple commands,
developers can now begin hacking
on container-based applications
without requiring Docker or even
installing Kubernetes themselves
Language support
Draft detects which language your
app is written in, and then uses
packs to generate a Dockerfile and
Helm Chart with the best practices
for that language
Draft
@bridgetkromhout #hashiconf
Run scriptable, automated tasks in the
cloud — as part of your Kubernetes cluster
Simple, powerful pipes
Each project gets a brigade.js
config file, which is where you
can write dynamic, interwoven
pipelines and tasks for your
Kubernetes cluster
Runs inside your cluster
By running Brigade as a
service inside your Kubernetes
cluster, you can harness the
power of millions of available
Docker images
Brigade
@bridgetkromhout #hashiconf
A simple UI to display build results and logs
Simple visualizations
A web dashboard for
Brigade, helping to
easily visualize and
inspect your Brigade
builds
Driving deep insights
Make Brigade DevOps
workflows— projects,
scripts, and jobs—and
their events visible
instantly
Kashti
@bridgetkromhout #hashiconf
the future
“What’s next?”
Jed Bartlet, The West Wing
@bridgetkromhout #hashiconf
the future
“What’s next?”
Jed Bartlet, The West Wing
November 6th: votesaveamerica.com
@bridgetkromhout #hashiconf
“Day Two
Is
Forever”
Forever
Forever
Forever
Forever
Forever flickr.com/photos/sirtrentalot/3195464062/ (CC BY 2.0)
@bridgetkromhout #hashiconf
winter is coming
(k8s getting real)
@bridgetkromhout #hashiconf
…but consider managed k8s!
(aka choose-your-own-complexity)
check out container.training…
@bridgetkromhout #hashiconf
azure.microsoft.com/blog/announcing-private-preview-of-azure-vm-image-builder/
@bridgetkromhout #hashiconf
sweetcode.io/a-first-look-at-the-helm-3-plan
Helm 3 changes include…
•deprecating tiller
•libraries, schematized values, and ext directory in charts
•lifecycle events
•embedded Lua engine for scripting event handlers
•Release and release version Secret objects
•new Helm Controller project for pull-based workflows
github.com/helm/community/blob/master/helm-v3/000-helm-v3.md
@bridgetkromhout #hashiconf
Virtual
Kubelet
@bridgetkromhout #hashiconf
recognize
change
exists…
@bridgetkromhout #hashiconf
…and change
doesn’t end...
@bridgetkromhout #hashiconf
…change is
the only
constant.
@bridgetkromhout #hashiconf
@bridgetkromhout #hashiconf
Terraform on Azure
docs.microsoft.com/azure/terraform
github.com/zdeptawa/terraform-on-azure/
Azure Free Trial
azure.com/free
Helm
helm.sh
Microsoft Ignite: The Tour
microsoft.com/ignite-the-tour
Microsoft Learn
docs.microsoft.com/learn
To learn more…
@bridgetkromhout #hashiconf
Terraform on Azure
docs.microsoft.com/azure/terraform
github.com/zdeptawa/terraform-on-azure/
Azure Free Trial
azure.com/free
Helm
helm.sh
Microsoft Ignite: The Tour
microsoft.com/ignite-the-tour
Microsoft Learn
docs.microsoft.com/learn
Thanks!

More Related Content

What's hot (20)

PPTX
Devoxx 2015 - Web Application Development using Grails and Docker
Ted Vinke
 
PDF
Rancher and Kubernetes - Vishal Biyani - Infracloud - Bangalore Container Con...
CodeOps Technologies LLP
 
PDF
Git deep dive – chopping Kubernetes
Stefan Schimanski
 
PDF
Mattia Gandolfi - Improving utilization and portability with Containers and C...
Codemotion
 
PDF
Setting up CI/CD pipeline with Kubernetes and Kublr step-by-step
Oleg Chunikhin
 
PDF
KubeCon EU 2016 Keynote: Kubernetes State of the Union
KubeAcademy
 
PDF
GitOps - Operation By Pull Request
Kasper Nissen
 
PDF
The path to a serverless-native era with Kubernetes
sparkfabrik
 
PDF
Kubernetes and the hybrid cloud with Skupper | DevNation tech talk
Red Hat Developers
 
PDF
Kubecon 2017 Resumo
Felipe Freire
 
PDF
KubeCon + CloudNativeCon China 2018 Recap
cyberblack28 Ichikawa
 
PDF
An overview of the Kubernetes architecture
Igor Sfiligoi
 
PDF
Why Kubernetes? Cloud Native and Developer Experience at Zalando - OWL Tech &...
Henning Jacobs
 
PDF
What's rancher v2.1.0 JA
cyberblack28 Ichikawa
 
PDF
Help , My Datacenter is on fire
Kris Buytaert
 
PDF
Multi cluster management with rancher
Kyohei Mizumoto
 
PPTX
Docker Enterprise Workshop - Technical
Patrick Chanezon
 
PDF
GitOps: Stop, collaborate and deploy | DevNation Tech Talk
Red Hat Developers
 
PDF
Kubernetes extensibility
Docker, Inc.
 
PDF
KubeCon EU 2016: Kubernetes in Production in The New York Times newsroom
KubeAcademy
 
Devoxx 2015 - Web Application Development using Grails and Docker
Ted Vinke
 
Rancher and Kubernetes - Vishal Biyani - Infracloud - Bangalore Container Con...
CodeOps Technologies LLP
 
Git deep dive – chopping Kubernetes
Stefan Schimanski
 
Mattia Gandolfi - Improving utilization and portability with Containers and C...
Codemotion
 
Setting up CI/CD pipeline with Kubernetes and Kublr step-by-step
Oleg Chunikhin
 
KubeCon EU 2016 Keynote: Kubernetes State of the Union
KubeAcademy
 
GitOps - Operation By Pull Request
Kasper Nissen
 
The path to a serverless-native era with Kubernetes
sparkfabrik
 
Kubernetes and the hybrid cloud with Skupper | DevNation tech talk
Red Hat Developers
 
Kubecon 2017 Resumo
Felipe Freire
 
KubeCon + CloudNativeCon China 2018 Recap
cyberblack28 Ichikawa
 
An overview of the Kubernetes architecture
Igor Sfiligoi
 
Why Kubernetes? Cloud Native and Developer Experience at Zalando - OWL Tech &...
Henning Jacobs
 
What's rancher v2.1.0 JA
cyberblack28 Ichikawa
 
Help , My Datacenter is on fire
Kris Buytaert
 
Multi cluster management with rancher
Kyohei Mizumoto
 
Docker Enterprise Workshop - Technical
Patrick Chanezon
 
GitOps: Stop, collaborate and deploy | DevNation Tech Talk
Red Hat Developers
 
Kubernetes extensibility
Docker, Inc.
 
KubeCon EU 2016: Kubernetes in Production in The New York Times newsroom
KubeAcademy
 

Similar to Day 2 Kubernetes - Tools for Operability (HashiConf) (20)

PDF
Cloud, Containers, Kubernetes (YOW Brisbane 2018)
bridgetkromhout
 
PDF
Kubernetes Operability Tooling (Minnebar 2019)
bridgetkromhout
 
PDF
Kubernetes Operability Tooling (devopsdays Seattle 2019)
bridgetkromhout
 
PPTX
Kubernetes on on on on on on on on on on on on on on Azure Deck.pptx
HectorSebastianMendo
 
PPTX
Using Azure DevOps to continuously build, test, and deploy containerized appl...
Adrian Todorov
 
PDF
K8sfor dev parisoss-summit-microsoft-5-decembre-short
Gabriel Bechara
 
PDF
Kubernetes for .NET developers
Shahid Iqbal
 
PPTX
Microsoft, Linux, Open Source, DevOps
Jessica Deen
 
PPTX
DevOps with Kubernetes and Helm - OSCON 2018
Jessica Deen
 
PPTX
DevOps with Kubernetes and Helm - Jenkins World Edition
Jessica Deen
 
PDF
Container orchestration k8s azure kubernetes services
Rajesh Kolla
 
PPTX
Best Practices with Azure & Kubernetes
Microsoft Tech Community
 
PDF
04_Azure Kubernetes Service: Basic Practices for Developers_GAB2019
Kumton Suttiraksiri
 
PPTX
DevOps with Azure, Kubernetes, and Helm Webinar
Codefresh
 
PDF
The state of containers for your DevOps journey
Agile Montréal
 
PDF
[WSO2Con Asia 2018] Deploying Applications in K8S and Docker
WSO2
 
PPTX
Microsoft, Linux, Open Source, DevOps
Jessica Deen
 
PPTX
Microsoft Ignite 2018 BRK3192 Container DevOps on Azure
Jessica Deen
 
PDF
Accelerate Application Innovation Journey with Azure Kubernetes Service
WinWire Technologies Inc
 
PPTX
Kubernetes for .NET Developers
Lorenzo Barbieri
 
Cloud, Containers, Kubernetes (YOW Brisbane 2018)
bridgetkromhout
 
Kubernetes Operability Tooling (Minnebar 2019)
bridgetkromhout
 
Kubernetes Operability Tooling (devopsdays Seattle 2019)
bridgetkromhout
 
Kubernetes on on on on on on on on on on on on on on Azure Deck.pptx
HectorSebastianMendo
 
Using Azure DevOps to continuously build, test, and deploy containerized appl...
Adrian Todorov
 
K8sfor dev parisoss-summit-microsoft-5-decembre-short
Gabriel Bechara
 
Kubernetes for .NET developers
Shahid Iqbal
 
Microsoft, Linux, Open Source, DevOps
Jessica Deen
 
DevOps with Kubernetes and Helm - OSCON 2018
Jessica Deen
 
DevOps with Kubernetes and Helm - Jenkins World Edition
Jessica Deen
 
Container orchestration k8s azure kubernetes services
Rajesh Kolla
 
Best Practices with Azure & Kubernetes
Microsoft Tech Community
 
04_Azure Kubernetes Service: Basic Practices for Developers_GAB2019
Kumton Suttiraksiri
 
DevOps with Azure, Kubernetes, and Helm Webinar
Codefresh
 
The state of containers for your DevOps journey
Agile Montréal
 
[WSO2Con Asia 2018] Deploying Applications in K8S and Docker
WSO2
 
Microsoft, Linux, Open Source, DevOps
Jessica Deen
 
Microsoft Ignite 2018 BRK3192 Container DevOps on Azure
Jessica Deen
 
Accelerate Application Innovation Journey with Azure Kubernetes Service
WinWire Technologies Inc
 
Kubernetes for .NET Developers
Lorenzo Barbieri
 
Ad

More from bridgetkromhout (20)

PDF
An introduction to Helm - KubeCon EU 2020
bridgetkromhout
 
PDF
Join Our Party: The Cloud Native Adventure Brigade (Kubernetes Belgium 2019)
bridgetkromhout
 
PDF
devops, distributed (devopsdays Ghent 2019)
bridgetkromhout
 
PDF
Join Our Party: The Cloud Native Adventure Brigade (devopsdays Philly 2019)
bridgetkromhout
 
PDF
Join Our Party: The Cloud Native Adventure Brigade (TCSW 2019)
bridgetkromhout
 
PDF
Increasing Reliability via Helm Pre-Release Checks (Helm Summit 2019)
bridgetkromhout
 
PDF
Kubernetes for the Impatient (devopsdays Cape Town 2019)
bridgetkromhout
 
PDF
Join Our Party: The Cloud Native Adventure Brigade (OSS 2019)
bridgetkromhout
 
PDF
Helm 3: Navigating To Distant Shores (OSS NA 2019)
bridgetkromhout
 
PDF
Helm 3: Navigating to Distant Shores (OSCON 2019)
bridgetkromhout
 
PDF
Kubernetes for the Impatient (Velocity San Jose 2019)
bridgetkromhout
 
PDF
Community projects inform enterprise products (Velocity San Jose 2019)
bridgetkromhout
 
PDF
Helm 3: Navigating to Distant Shores (KubeCon EU 2019)
bridgetkromhout
 
PDF
Livetweeting Tech Conferences - SREcon Americas 2019
bridgetkromhout
 
PDF
Day 2 Kubernetes - Tools for Operability (Philly Open Source)
bridgetkromhout
 
PDF
the endless now: distributed systems & teams
bridgetkromhout
 
PDF
Containers will not fix your broken culture (and other hard truths) - OhioLinux
bridgetkromhout
 
PDF
Containers will not fix your broken culture (and other hard truths) - ApacheC...
bridgetkromhout
 
PDF
Through a glass darkly: ethics in AI (PagerDuty Summit 2018)
bridgetkromhout
 
PDF
Give Actionable Takeaways
bridgetkromhout
 
An introduction to Helm - KubeCon EU 2020
bridgetkromhout
 
Join Our Party: The Cloud Native Adventure Brigade (Kubernetes Belgium 2019)
bridgetkromhout
 
devops, distributed (devopsdays Ghent 2019)
bridgetkromhout
 
Join Our Party: The Cloud Native Adventure Brigade (devopsdays Philly 2019)
bridgetkromhout
 
Join Our Party: The Cloud Native Adventure Brigade (TCSW 2019)
bridgetkromhout
 
Increasing Reliability via Helm Pre-Release Checks (Helm Summit 2019)
bridgetkromhout
 
Kubernetes for the Impatient (devopsdays Cape Town 2019)
bridgetkromhout
 
Join Our Party: The Cloud Native Adventure Brigade (OSS 2019)
bridgetkromhout
 
Helm 3: Navigating To Distant Shores (OSS NA 2019)
bridgetkromhout
 
Helm 3: Navigating to Distant Shores (OSCON 2019)
bridgetkromhout
 
Kubernetes for the Impatient (Velocity San Jose 2019)
bridgetkromhout
 
Community projects inform enterprise products (Velocity San Jose 2019)
bridgetkromhout
 
Helm 3: Navigating to Distant Shores (KubeCon EU 2019)
bridgetkromhout
 
Livetweeting Tech Conferences - SREcon Americas 2019
bridgetkromhout
 
Day 2 Kubernetes - Tools for Operability (Philly Open Source)
bridgetkromhout
 
the endless now: distributed systems & teams
bridgetkromhout
 
Containers will not fix your broken culture (and other hard truths) - OhioLinux
bridgetkromhout
 
Containers will not fix your broken culture (and other hard truths) - ApacheC...
bridgetkromhout
 
Through a glass darkly: ethics in AI (PagerDuty Summit 2018)
bridgetkromhout
 
Give Actionable Takeaways
bridgetkromhout
 
Ad

Recently uploaded (20)

PDF
Darley - FIRST Copenhagen Lightning Talk (2025-06-26) Epochalypse 2038 - Time...
treyka
 
PDF
From Chatbot to Destroyer of Endpoints - Can ChatGPT Automate EDR Bypasses (1...
Priyanka Aash
 
PDF
Database Benchmarking for Performance Masterclass: Session 1 - Benchmarking F...
ScyllaDB
 
PDF
Java 25 and Beyond - A Roadmap of Innovations
Ana-Maria Mihalceanu
 
PPTX
Curietech AI in action - Accelerate MuleSoft development
shyamraj55
 
PDF
Cracking the Code - Unveiling Synergies Between Open Source Security and AI.pdf
Priyanka Aash
 
PDF
Database Benchmarking for Performance Masterclass: Session 2 - Data Modeling ...
ScyllaDB
 
PDF
The Growing Value and Application of FME & GenAI
Safe Software
 
PDF
Quantum AI Discoveries: Fractal Patterns Consciousness and Cyclical Universes
Saikat Basu
 
PPTX
Enabling the Digital Artisan – keynote at ICOCI 2025
Alan Dix
 
PDF
“MPU+: A Transformative Solution for Next-Gen AI at the Edge,” a Presentation...
Edge AI and Vision Alliance
 
PPTX
𝙳𝚘𝚠𝚗𝚕𝚘𝚊𝚍—Wondershare Filmora Crack 14.0.7 + Key Download 2025
sebastian aliya
 
PPTX
UserCon Belgium: Honey, VMware increased my bill
stijn40
 
PPTX
Practical Applications of AI in Local Government
OnBoard
 
PDF
Hello I'm "AI" Your New _________________
Dr. Tathagat Varma
 
PDF
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
 
PDF
EIS-Webinar-Engineering-Retail-Infrastructure-06-16-2025.pdf
Earley Information Science
 
PDF
Plugging AI into everything: Model Context Protocol Simplified.pdf
Abati Adewale
 
PDF
Kubernetes - Architecture & Components.pdf
geethak285
 
PDF
5 Things to Consider When Deploying AI in Your Enterprise
Safe Software
 
Darley - FIRST Copenhagen Lightning Talk (2025-06-26) Epochalypse 2038 - Time...
treyka
 
From Chatbot to Destroyer of Endpoints - Can ChatGPT Automate EDR Bypasses (1...
Priyanka Aash
 
Database Benchmarking for Performance Masterclass: Session 1 - Benchmarking F...
ScyllaDB
 
Java 25 and Beyond - A Roadmap of Innovations
Ana-Maria Mihalceanu
 
Curietech AI in action - Accelerate MuleSoft development
shyamraj55
 
Cracking the Code - Unveiling Synergies Between Open Source Security and AI.pdf
Priyanka Aash
 
Database Benchmarking for Performance Masterclass: Session 2 - Data Modeling ...
ScyllaDB
 
The Growing Value and Application of FME & GenAI
Safe Software
 
Quantum AI Discoveries: Fractal Patterns Consciousness and Cyclical Universes
Saikat Basu
 
Enabling the Digital Artisan – keynote at ICOCI 2025
Alan Dix
 
“MPU+: A Transformative Solution for Next-Gen AI at the Edge,” a Presentation...
Edge AI and Vision Alliance
 
𝙳𝚘𝚠𝚗𝚕𝚘𝚊𝚍—Wondershare Filmora Crack 14.0.7 + Key Download 2025
sebastian aliya
 
UserCon Belgium: Honey, VMware increased my bill
stijn40
 
Practical Applications of AI in Local Government
OnBoard
 
Hello I'm "AI" Your New _________________
Dr. Tathagat Varma
 
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
 
EIS-Webinar-Engineering-Retail-Infrastructure-06-16-2025.pdf
Earley Information Science
 
Plugging AI into everything: Model Context Protocol Simplified.pdf
Abati Adewale
 
Kubernetes - Architecture & Components.pdf
geethak285
 
5 Things to Consider When Deploying AI in Your Enterprise
Safe Software
 

Day 2 Kubernetes - Tools for Operability (HashiConf)