SlideShare a Scribd company logo
1 of 54
Download to read offline
@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

What's hot (20)

Devoxx 2015 - Web Application Development using Grails and Docker
Devoxx 2015 - Web Application Development using Grails and DockerDevoxx 2015 - Web Application Development using Grails and Docker
Devoxx 2015 - Web Application Development using Grails and Docker
 
Rancher and Kubernetes - Vishal Biyani - Infracloud - Bangalore Container Con...
Rancher and Kubernetes - Vishal Biyani - Infracloud - Bangalore Container Con...Rancher and Kubernetes - Vishal Biyani - Infracloud - Bangalore Container Con...
Rancher and Kubernetes - Vishal Biyani - Infracloud - Bangalore Container Con...
 
Git deep dive – chopping Kubernetes
Git deep dive – chopping KubernetesGit deep dive – chopping Kubernetes
Git deep dive – chopping Kubernetes
 
Mattia Gandolfi - Improving utilization and portability with Containers and C...
Mattia Gandolfi - Improving utilization and portability with Containers and C...Mattia Gandolfi - Improving utilization and portability with Containers and C...
Mattia Gandolfi - Improving utilization and portability with Containers and C...
 
Setting up CI/CD pipeline with Kubernetes and Kublr step-by-step
Setting up CI/CD pipeline with Kubernetes and Kublr step-by-stepSetting up CI/CD pipeline with Kubernetes and Kublr step-by-step
Setting up CI/CD pipeline with Kubernetes and Kublr step-by-step
 
KubeCon EU 2016 Keynote: Kubernetes State of the Union
KubeCon EU 2016 Keynote: Kubernetes State of the UnionKubeCon EU 2016 Keynote: Kubernetes State of the Union
KubeCon EU 2016 Keynote: Kubernetes State of the Union
 
GitOps - Operation By Pull Request
GitOps - Operation By Pull RequestGitOps - Operation By Pull Request
GitOps - Operation By Pull Request
 
The path to a serverless-native era with Kubernetes
The path to a serverless-native era with KubernetesThe path to a serverless-native era with Kubernetes
The path to a serverless-native era with Kubernetes
 
Kubernetes and the hybrid cloud with Skupper | DevNation tech talk
Kubernetes and the hybrid cloud with Skupper | DevNation tech talkKubernetes and the hybrid cloud with Skupper | DevNation tech talk
Kubernetes and the hybrid cloud with Skupper | DevNation tech talk
 
Kubecon 2017 Resumo
Kubecon 2017 ResumoKubecon 2017 Resumo
Kubecon 2017 Resumo
 
KubeCon + CloudNativeCon China 2018 Recap
KubeCon + CloudNativeCon China 2018 RecapKubeCon + CloudNativeCon China 2018 Recap
KubeCon + CloudNativeCon China 2018 Recap
 
An overview of the Kubernetes architecture
An overview of the Kubernetes architectureAn overview of the Kubernetes architecture
An overview of the Kubernetes architecture
 
Why Kubernetes? Cloud Native and Developer Experience at Zalando - OWL Tech &...
Why Kubernetes? Cloud Native and Developer Experience at Zalando - OWL Tech &...Why Kubernetes? Cloud Native and Developer Experience at Zalando - OWL Tech &...
Why Kubernetes? Cloud Native and Developer Experience at Zalando - OWL Tech &...
 
What's rancher v2.1.0 JA
What's rancher v2.1.0 JAWhat's rancher v2.1.0 JA
What's rancher v2.1.0 JA
 
Help , My Datacenter is on fire
Help , My Datacenter is on fireHelp , My Datacenter is on fire
Help , My Datacenter is on fire
 
Multi cluster management with rancher
Multi cluster management with rancherMulti cluster management with rancher
Multi cluster management with rancher
 
Docker Enterprise Workshop - Technical
Docker Enterprise Workshop - TechnicalDocker Enterprise Workshop - Technical
Docker Enterprise Workshop - Technical
 
GitOps: Stop, collaborate and deploy | DevNation Tech Talk
GitOps: Stop, collaborate and deploy | DevNation Tech TalkGitOps: Stop, collaborate and deploy | DevNation Tech Talk
GitOps: Stop, collaborate and deploy | DevNation Tech Talk
 
Kubernetes extensibility
Kubernetes extensibilityKubernetes extensibility
Kubernetes extensibility
 
KubeCon EU 2016: Kubernetes in Production in The New York Times newsroom
KubeCon EU 2016: Kubernetes in Production in The New York Times newsroomKubeCon EU 2016: Kubernetes in Production in The New York Times newsroom
KubeCon EU 2016: Kubernetes in Production in The New York Times newsroom
 

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

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

Cloud, Containers, Kubernetes (YOW Brisbane 2018)
Cloud, Containers, Kubernetes (YOW Brisbane 2018)Cloud, Containers, Kubernetes (YOW Brisbane 2018)
Cloud, Containers, Kubernetes (YOW Brisbane 2018)
 
Kubernetes Operability Tooling (Minnebar 2019)
Kubernetes Operability Tooling (Minnebar 2019)Kubernetes Operability Tooling (Minnebar 2019)
Kubernetes Operability Tooling (Minnebar 2019)
 
the endless now: distributed systems & teams
the endless now: distributed systems & teamsthe endless now: distributed systems & teams
the endless now: distributed systems & teams
 
Kubernetes Operability Tooling (devopsdays Seattle 2019)
Kubernetes Operability Tooling (devopsdays Seattle 2019)Kubernetes Operability Tooling (devopsdays Seattle 2019)
Kubernetes Operability Tooling (devopsdays Seattle 2019)
 
Join Our Party: The Cloud Native Adventure Brigade (OSS 2019)
Join Our Party: The Cloud Native Adventure Brigade (OSS 2019)Join Our Party: The Cloud Native Adventure Brigade (OSS 2019)
Join Our Party: The Cloud Native Adventure Brigade (OSS 2019)
 
Join Our Party: The Cloud Native Adventure Brigade (TCSW 2019)
Join Our Party: The Cloud Native Adventure Brigade (TCSW 2019)Join Our Party: The Cloud Native Adventure Brigade (TCSW 2019)
Join Our Party: The Cloud Native Adventure Brigade (TCSW 2019)
 
K8sfor dev parisoss-summit-microsoft-5-decembre-short
K8sfor dev parisoss-summit-microsoft-5-decembre-shortK8sfor dev parisoss-summit-microsoft-5-decembre-short
K8sfor dev parisoss-summit-microsoft-5-decembre-short
 
Join Our Party: The Cloud Native Adventure Brigade (devopsdays Philly 2019)
Join Our Party: The Cloud Native Adventure Brigade (devopsdays Philly 2019)Join Our Party: The Cloud Native Adventure Brigade (devopsdays Philly 2019)
Join Our Party: The Cloud Native Adventure Brigade (devopsdays Philly 2019)
 
DevOps with Kubernetes and Helm - Jenkins World Edition
DevOps with Kubernetes and Helm - Jenkins World EditionDevOps with Kubernetes and Helm - Jenkins World Edition
DevOps with Kubernetes and Helm - Jenkins World Edition
 
Kubermatic.pdf
Kubermatic.pdfKubermatic.pdf
Kubermatic.pdf
 
Kubermatic CNCF Webinar - start.kubermatic.pdf
Kubermatic CNCF Webinar - start.kubermatic.pdfKubermatic CNCF Webinar - start.kubermatic.pdf
Kubermatic CNCF Webinar - start.kubermatic.pdf
 
DevOps with Kubernetes and Helm - OSCON 2018
DevOps with Kubernetes and Helm - OSCON 2018DevOps with Kubernetes and Helm - OSCON 2018
DevOps with Kubernetes and Helm - OSCON 2018
 
Deploy the blockchain network using kubernetes ap is on google cloud
Deploy the blockchain network using kubernetes ap is on google cloudDeploy the blockchain network using kubernetes ap is on google cloud
Deploy the blockchain network using kubernetes ap is on google cloud
 
Federated Kubernetes: As a Platform for Distributed Scientific Computing
Federated Kubernetes: As a Platform for Distributed Scientific ComputingFederated Kubernetes: As a Platform for Distributed Scientific Computing
Federated Kubernetes: As a Platform for Distributed Scientific Computing
 
Introduction of kubernetes rancher
Introduction of kubernetes rancherIntroduction of kubernetes rancher
Introduction of kubernetes rancher
 
Clouds & Containers: Hit the High Points and Give it to Me Straight, What's t...
Clouds & Containers: Hit the High Points and Give it to Me Straight, What's t...Clouds & Containers: Hit the High Points and Give it to Me Straight, What's t...
Clouds & Containers: Hit the High Points and Give it to Me Straight, What's t...
 
Clouds & Containers: Hit the High Points and Give it to Me Straight, What's t...
Clouds & Containers: Hit the High Points and Give it to Me Straight, What's t...Clouds & Containers: Hit the High Points and Give it to Me Straight, What's t...
Clouds & Containers: Hit the High Points and Give it to Me Straight, What's t...
 
Introduction of k8s rancher
Introduction of k8s rancherIntroduction of k8s rancher
Introduction of k8s rancher
 
Episode 3: Kubernetes and Big Data Services
Episode 3: Kubernetes and Big Data ServicesEpisode 3: Kubernetes and Big Data Services
Episode 3: Kubernetes and Big Data Services
 
A Hitchhiker’s Guide to the Cloud Native Stack. #CDS17
A Hitchhiker’s Guide to the Cloud Native Stack. #CDS17A Hitchhiker’s Guide to the Cloud Native Stack. #CDS17
A Hitchhiker’s Guide to the Cloud Native Stack. #CDS17
 

More from bridgetkromhout

More from bridgetkromhout (16)

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

Recently uploaded

Recently uploaded (20)

The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 

Day 2 Kubernetes - Tools for Operability (HashiConf)