SlideShare a Scribd company logo
‹#›
@tpryan
Terrence Ryan
Developer Advocate
Containing Chaos
with Kubernetes
‹#›
@tpryan
Who are you?
‹#›
@tpryan
01 Introduction
Why Kubernetes?
‹#›
@tpryan
What problem are 

we trying to solve?
‹#›
@tpryan
# FRONTEND AND SERVICES
FROM nginx-php-fpm
COPY nginx.conf /etc/nginx/nginx.conf
ADD www /var/www/
‹#›
@tpryan
# BACKEND
FROM ubuntu:12.04
ADD ./mysql-setup.sh /tmp/mysql-setup.sh
RUN /bin/sh /tmp/mysql-setup.sh
EXPOSE 3306
CMD ["/usr/sbin/mysqld"]
‹#›
@tpryan
‹#›
@tpryan
‹#›
@tpryan
‹#›
@tpryan
# FRONTEND AND SERVICES
FROM nginx-php-fpm
COPY nginx.conf /etc/nginx/nginx.conf
ADD www /var/www/
‹#›
@tpryan
# FRONTEND AND SERVICES
FROM nginx-php-fpm
COPY nginx.conf /etc/nginx/nginx.conf
ADD www /var/www/
# JUST SERVICES
FROM nginx-php-fpm
COPY nginx.conf /etc/nginx/nginx.conf
ADD www /var/www/
‹#›
@tpryan
# FRONTEND AND SERVICES
FROM nginx-php-fpm
COPY nginx.conf /etc/nginx/nginx.conf
ADD www /var/www/
‹#›
@tpryan
# FRONTEND AND SERVICES
FROM nginx-php-fpm
COPY nginx.conf /etc/nginx/nginx.conf
ADD www /var/www/
# FRONTEND
FROM nginx
COPY nginx.conf /etc/nginx/nginx.conf
ADD www /var/www/
‹#›
@tpryan
‹#›
@tpryan
‹#›
@tpryan
# BACKEND
FROM ubuntu:12.04
ADD ./mysql-setup.sh /tmp/mysql-setup.sh
RUN /bin/sh /tmp/mysql-setup.sh
EXPOSE 3306
CMD ["/usr/sbin/mysqld"]
‹#›
@tpryan
# BACKEND
FROM ubuntu:12.04
ADD ./mysql-setup.sh /tmp/mysql-setup.sh
RUN /bin/sh /tmp/mysql-setup.sh
EXPOSE 3306
CMD ["/usr/sbin/mysqld"]
# BACKEND
FROM ubuntu:12.04
ADD ./mysql-setup.sh /tmp/mysql-setup.sh
RUN /bin/sh /tmp/mysql-setup.sh
EXPOSE 3306
VOLUME ["/etc/mysql", "/var/lib/mysql"]
CMD ["/usr/sbin/mysqld"]
‹#›
@tpryan
‹#›
@tpryan
‹#›
@tpryan
‹#›
@tpryan
‹#›
@tpryan
‹#›
@tpryan
‹#›
@tpryan
‹#›
@tpryan
‹#›
@tpryan
‹#›
@tpryan
‹#›
@tpryan
That’s a lot to manage.
‹#›
@tpryan
‹#›
@tpryan
4 3 2
‹#›
@tpryan
02 Concepts
What is Kubernetes?
‹#›
@tpryan
Desired State
‹#›
@tpryan
Build Script
‹#›
@tpryan
Build Script
./create_docker_images.sh
‹#›
@tpryan
Build Script
./create_docker_images.sh
./launch_frontend.sh x 3
‹#›
@tpryan
Build Script
./create_docker_images.sh
./launch_frontend.sh x 3
./launch_services.sh x 2
‹#›
@tpryan
Build Script
./create_docker_images.sh
./launch_frontend.sh x 3
./launch_services.sh x 2
./launch_backend.sh x 1
‹#›
@tpryan
Build Script
./create_docker_images.sh
./launch_frontend.sh x 3
./launch_services.sh x 2
./launch_backend.sh x 1
‹#›
@tpryan
Build Script
./create_docker_images.sh
./launch_frontend.sh x 3
./launch_services.sh x 2
./launch_backend.sh x 1
‹#›
@tpryan
Build Script
./create_docker_images.sh
./launch_frontend.sh x 3
./launch_services.sh x 2
./launch_backend.sh x 1
‹#›
@tpryan
Desired State
There should be:
3 Frontends
2 Services
1 Backend
‹#›
@tpryan
Desired State
There should be:
3 Frontends
2 Services
1 Backend
‹#›
@tpryan
Desired State
There should be:
3 Frontends
2 Services
1 Backend
‹#›
@tpryan
Pods
• Atomic component of Kubernetes
• Made from one or more containers
• It’s okay to have just one container
• Share
• IP Address
• Namespace
• Examples
• Webserver + CMS
• All Web available services
• Converting an all in one box
‹#›
@tpryan
Containers
• Subatomic particles of Kubernetes
• Dockerfiles just like you are used to.
‹#›
@tpryan
Controllers
• Handle turning current state into desired state
• Example
• Replication Controllers
‹#›
@tpryan
Controllers
• Handle turning current state into desired state
• Example
• Replication Controllers
Observe
‹#›
@tpryan
Controllers
• Handle turning current state into desired state
• Example
• Replication Controllers
Observe
Act
‹#›
@tpryan
Controllers
• Handle turning current state into desired state
• Example
• Replication Controllers
Observe
Diff
Act
‹#›
@tpryan
Service
• Defines a set of pods that work together for a
common purpose
• Gets a virtual IP address
• Used for exposing an application to non
Kubernetes clients
Virtual IP address
‹#›
@tpryan
Labels & Selectors
• Metadata for Objects
• Select sections of your infrastructure
App
Tier
Env
todo
frontend
stage
App
Tier
Env
todo
frontend
prod
App
Tier
Env
todo
frontend
dev
App
Tier
Env
todo
frontend
test
App
Tier
Env
todo
api
prod
App
Tier
Env
todo
backend
prod
App
Tier
Env
todo
api
stage
App
Tier
Env
todo
api
test
App
Tier
Env
todo
api
dev
App
Tier
Env
todo
backend
stage
App
Tier
Env
todo
backend
test
App
Tier
Env
todo
backend
dev
‹#›
@tpryan
Labels & Selectors
• Metadata for Objects
• Select sections of your infrastructure
App
Tier
Env
todo
frontend
stage
App
Tier
Env
todo
frontend
prod
App
Tier
Env
todo
frontend
dev
App
Tier
Env
todo
frontend
test
App
Tier
Env
todo
api
prod
App
Tier
Env
todo
backend
prod
App
Tier
Env
todo
api
stage
App
Tier
Env
todo
api
test
App
Tier
Env
todo
api
dev
App
Tier
Env
todo
backend
stage
App
Tier
Env
todo
backend
test
App
Tier
Env
todo
backend
dev
‹#›
@tpryan
Labels & Selectors
• Metadata for Objects
• Select sections of your infrastructure
App
Tier
Env
todo
frontend
stage
App
Tier
Env
todo
frontend
prod
App
Tier
Env
todo
frontend
dev
App
Tier
Env
todo
frontend
test
App
Tier
Env
todo
api
prod
App
Tier
Env
todo
backend
prod
App
Tier
Env
todo
api
stage
App
Tier
Env
todo
api
test
App
Tier
Env
todo
api
dev
App
Tier
Env
todo
backend
stage
App
Tier
Env
todo
backend
test
App
Tier
Env
todo
backend
dev
‹#›
@tpryan
Labels & Selectors
• Metadata for Objects
• Select sections of your infrastructure
App
Tier
Env
todo
frontend
stage
App
Tier
Env
todo
frontend
prod
App
Tier
Env
todo
frontend
dev
App
Tier
Env
todo
frontend
test
App
Tier
Env
todo
api
prod
App
Tier
Env
todo
backend
prod
App
Tier
Env
todo
api
stage
App
Tier
Env
todo
api
test
App
Tier
Env
todo
api
dev
App
Tier
Env
todo
backend
stage
App
Tier
Env
todo
backend
test
App
Tier
Env
todo
backend
dev
‹#›
@tpryan
Demo: Kubernetes in Action
‹#›
@tpryan
There’s More
• Secrets
• Rolling Updates
• Persistent Volumes
‹#›
@tpryan
03 Container Engine
Hosted Kubernetes
‹#›
@tpryan
I’ve mostly talked about
developing on Kubernetes
‹#›
@tpryan
Setting up a cluster
‹#›
@tpryan
Setting up a cluster
• Choose a cloud:
• GCE, AWS, Azure, Rackspace, on-premises, …
‹#›
@tpryan
Setting up a cluster
• Choose a cloud:
• GCE, AWS, Azure, Rackspace, on-premises, …
• Choose a node OS:
• CoreOS, Atomic, RHEL, Debian, CentOS, Ubuntu, ...
‹#›
@tpryan
Setting up a cluster
• Choose a cloud:
• GCE, AWS, Azure, Rackspace, on-premises, …
• Choose a node OS:
• CoreOS, Atomic, RHEL, Debian, CentOS, Ubuntu, ...
• Provision machines:
• Boot VMs, install and run kube components, ...
‹#›
@tpryan
Setting up a cluster
• Choose a cloud:
• GCE, AWS, Azure, Rackspace, on-premises, …
• Choose a node OS:
• CoreOS, Atomic, RHEL, Debian, CentOS, Ubuntu, ...
• Provision machines:
• Boot VMs, install and run kube components, ...
• Configure networking:
• IP ranges for Pods, Services, SDN, ...
‹#›
@tpryan
Setting up a cluster
• Choose a cloud:
• GCE, AWS, Azure, Rackspace, on-premises, …
• Choose a node OS:
• CoreOS, Atomic, RHEL, Debian, CentOS, Ubuntu, ...
• Provision machines:
• Boot VMs, install and run kube components, ...
• Configure networking:
• IP ranges for Pods, Services, SDN, ...
• Start cluster services:
• DNS, logging, monitoring, ...
‹#›
@tpryan
Setting up a cluster
• Choose a cloud:
• GCE, AWS, Azure, Rackspace, on-premises, …
• Choose a node OS:
• CoreOS, Atomic, RHEL, Debian, CentOS, Ubuntu, ...
• Provision machines:
• Boot VMs, install and run kube components, ...
• Configure networking:
• IP ranges for Pods, Services, SDN, ...
• Start cluster services:
• DNS, logging, monitoring, ...
• Manage nodes:
• kernel upgrades, OS updates, hardware failures...
‹#›
@tpryan
Or…
‹#›
@tpryan
‹#›
@tpryan
‹#›
@tpryan
Container Engine
‹#›
@tpryan
Container Engine
• Hosted Kubernetes
‹#›
@tpryan
Container Engine
• Hosted Kubernetes
• A few smart defaults set
‹#›
@tpryan
Container Engine
• Hosted Kubernetes
• A few smart defaults set
• Allow for dipping your feet in
‹#›
@tpryan
05 Conclusions
Bring it home
Google has been developing and
using containers to manage our
applications for over 10 years.
‹#›
@tpryan
‹#›
@tpryan
Everything at Google runs on Containers:
• Gmail, Web Search, Maps, ...
• MapReduce, batch, ...
• GFS, Colossus, ...
• Even Google’s Cloud Platform: VMs run
in containers!
‹#›
@tpryan
Everything at Google runs on Containers:
• Gmail, Web Search, Maps, ...
• MapReduce, batch, ...
• GFS, Colossus, ...
• Even Google’s Cloud Platform: VMs run
in containers!
We launch 2 Billion Containers a week
‹#›
@tpryan
We think containers are the
way to manage scale.
‹#›
@tpryan
You should carefully consider
whether running everything on
containers is right for you.
‹#›
@tpryan
You should run everything on
containers.
Just in case it isn’t clear here. this is not what I am recommending. I’m saying don’t Cherry Pick from the last statements to come to the conclusion that you have to go
this way.
‹#›
@tpryan
Container Engine can make
dipping your toes in a little
easier.
‹#›
@tpryan
Thank You
terrenceryan.com
@tpryan
This preso: http://bit.ly/tpryan-chaos

More Related Content

PPTX
Test-Driven Infrastructure with Puppet, Test Kitchen, Serverspec and RSpec
PPTX
Verifying your Ansible Roles using Docker, Test Kitchen and Serverspec
PPTX
Deploying On-Prem as SaaS: Why we go with Ansible
PDF
Making the most out of kubernetes audit logs
PPTX
Tuning Apache Ambari Performance for Big Data at Scale with 3,000 Agents
PDF
Kubernetes the Very Hard Way. Velocity Berlin 2019
PPTX
Streamline Hadoop DevOps with Apache Ambari
PPTX
Chef vs Puppet vs Ansible vs Saltstack | Configuration Management Tools | Dev...
Test-Driven Infrastructure with Puppet, Test Kitchen, Serverspec and RSpec
Verifying your Ansible Roles using Docker, Test Kitchen and Serverspec
Deploying On-Prem as SaaS: Why we go with Ansible
Making the most out of kubernetes audit logs
Tuning Apache Ambari Performance for Big Data at Scale with 3,000 Agents
Kubernetes the Very Hard Way. Velocity Berlin 2019
Streamline Hadoop DevOps with Apache Ambari
Chef vs Puppet vs Ansible vs Saltstack | Configuration Management Tools | Dev...

What's hot (19)

PDF
Hystrix
PDF
Kubernetes: Beyond Baby Steps
PPTX
Serverspec and Sensu - Testing and Monitoring collide
ODP
Ansible get started
PDF
Introduction openstack-meetup-nov-28
PDF
Evolution of kube-proxy (Brussels, Fosdem 2020)
PDF
Charla - SharePoint en la Nube (17Jul2013)
PDF
Automating the Network
PPTX
Immutable Infrastructure with Packer Ansible and Terraform
PDF
Hosting Ruby Web Apps
PDF
Optimizing kubernetes networking
PDF
Introduction to Chef - Techsuperwomen Summit
PDF
Introduction to Chef - April 22 2015
PDF
Aws + kubernetes = ❤︎
PPTX
Chef Workflow Demo
PPTX
Automating Software Development Life Cycle - A DevOps Approach
PDF
Securing Your Containerized Applications with NGINX
PDF
Way to cloud
PPT
State of Puppet 2013 - Puppet Camp DC
Hystrix
Kubernetes: Beyond Baby Steps
Serverspec and Sensu - Testing and Monitoring collide
Ansible get started
Introduction openstack-meetup-nov-28
Evolution of kube-proxy (Brussels, Fosdem 2020)
Charla - SharePoint en la Nube (17Jul2013)
Automating the Network
Immutable Infrastructure with Packer Ansible and Terraform
Hosting Ruby Web Apps
Optimizing kubernetes networking
Introduction to Chef - Techsuperwomen Summit
Introduction to Chef - April 22 2015
Aws + kubernetes = ❤︎
Chef Workflow Demo
Automating Software Development Life Cycle - A DevOps Approach
Securing Your Containerized Applications with NGINX
Way to cloud
State of Puppet 2013 - Puppet Camp DC
Ad

Viewers also liked (20)

PDF
The Road to a Hybrid, Transparent Pipeline
PDF
Desarrollo humano y recreacio 2do
PDF
Buenaidea service design
PDF
Codigo de comunicacion Tarea 5
PDF
PDF
Mesa 1315 Rodas hasta Rojas
PPTX
Mobile Audience Research
PDF
Introducing ican
PDF
MBA Thesis Andreychikova Yana
PDF
CNA denuncia a dos ex empleados y un activo del IHSS por enriquecimiento ilíc...
DOC
Haz clic aquí para ver tu historial de conversaciones completo con este contacto
PDF
Revista cancer ovario
PDF
Iluminación Lámparas Vintage Retro EGLO 2016
PPTX
How I Became a Telephone Names Sourcer
PDF
Zoorate - presentazione agg al 01 09 2015
PDF
Etnografia comp consumidor-2011-moda-cibertec
PPS
BLACK FUSION PLAN DE COMPENSACION
PDF
IA 6: Patterns for Effective Interaction Design. Jenifer Tidwell
The Road to a Hybrid, Transparent Pipeline
Desarrollo humano y recreacio 2do
Buenaidea service design
Codigo de comunicacion Tarea 5
Mesa 1315 Rodas hasta Rojas
Mobile Audience Research
Introducing ican
MBA Thesis Andreychikova Yana
CNA denuncia a dos ex empleados y un activo del IHSS por enriquecimiento ilíc...
Haz clic aquí para ver tu historial de conversaciones completo con este contacto
Revista cancer ovario
Iluminación Lámparas Vintage Retro EGLO 2016
How I Became a Telephone Names Sourcer
Zoorate - presentazione agg al 01 09 2015
Etnografia comp consumidor-2011-moda-cibertec
BLACK FUSION PLAN DE COMPENSACION
IA 6: Patterns for Effective Interaction Design. Jenifer Tidwell
Ad

Similar to Containing Chaos with Kubernetes - Terrence Ryan, Google - DevOpsDays Tel Aviv 2015 (20)

PDF
Build and Deploy Cloud Native Camel Quarkus routes with Tekton and Knative
PPTX
To Build My Own Cloud with Blackjack…
PPTX
Knative with .NET Core and Quarkus with GraalVM
PDF
TIAD : Automating the aplication lifecycle
PDF
A Byte of Software Deployment
PPTX
What is serveless?
PPTX
OSDN: Serverless technologies with Kubernetes
PDF
Provisioning Windows instances at scale on Azure, AWS and OpenStack - Adrian ...
PDF
How to write a Neutron plugin (stadium edition)
PDF
How to build a Neutron Plugin (stadium edition)
PPTX
Dockerizing the Hard Services: Neutron and Nova
PPTX
Lattice yapc-slideshare
PPTX
What's new in Docker - InfraKit - Docker Meetup Berlin 2016
PDF
Making Spinnaker Go @ Stitch Fix
PPTX
drupal ci cd concept cornel univercity.pptx
PDF
AWS Lambda from the trenches
PDF
'DOCKER' & CLOUD: ENABLERS For DEVOPS
PDF
Docker and Cloud - Enables for DevOps - by ACA-IT
PDF
Containerisation Hack of a Legacy Software Solution - Alex Carter - CodeMill ...
PDF
Kuby, ActiveDeployment for Rails Apps
Build and Deploy Cloud Native Camel Quarkus routes with Tekton and Knative
To Build My Own Cloud with Blackjack…
Knative with .NET Core and Quarkus with GraalVM
TIAD : Automating the aplication lifecycle
A Byte of Software Deployment
What is serveless?
OSDN: Serverless technologies with Kubernetes
Provisioning Windows instances at scale on Azure, AWS and OpenStack - Adrian ...
How to write a Neutron plugin (stadium edition)
How to build a Neutron Plugin (stadium edition)
Dockerizing the Hard Services: Neutron and Nova
Lattice yapc-slideshare
What's new in Docker - InfraKit - Docker Meetup Berlin 2016
Making Spinnaker Go @ Stitch Fix
drupal ci cd concept cornel univercity.pptx
AWS Lambda from the trenches
'DOCKER' & CLOUD: ENABLERS For DEVOPS
Docker and Cloud - Enables for DevOps - by ACA-IT
Containerisation Hack of a Legacy Software Solution - Alex Carter - CodeMill ...
Kuby, ActiveDeployment for Rails Apps

More from DevOpsDays Tel Aviv (20)

PDF
YOUR OPEN SOURCE PROJECT IS LIKE A STARTUP, TREAT IT LIKE ONE, EYAR ZILBERMAN...
PPTX
GRAPHQL TO THE RES(T)CUE, ELLA SHARAKANSKI, Salto
PPTX
MICROSERVICES ABOVE THE CLOUD - DESIGNING THE INTERNATIONAL SPACE STATION FOR...
PPTX
THE (IR)RATIONAL INCIDENT RESPONSE: HOW PSYCHOLOGICAL BIASES AFFECT INCIDENT ...
PPTX
PRINCIPLES OF OBSERVABILITY // DANIEL MAHER, DataDog
PPTX
NUDGE AND SLUDGE: DRIVING SECURITY WITH DESIGN // J. WOLFGANG GOERLICH, Duo S...
PPTX
(Ignite) TAKE A HIKE: PREVENTING BATTERY CORROSION - LEAH VOGEL, CHEGG
PPTX
BUILDING A DR PLAN FOR YOUR CLOUD INFRASTRUCTURE FROM THE GROUND UP, MOSHE BE...
PPTX
THE THREE DISCIPLINES OF CI/CD SECURITY, DANIEL KRIVELEVICH, Cider Security
PDF
THE PLEASURES OF ON-PREM, TOMER GABEL
PPTX
CONFIGURATION MANAGEMENT IN THE CLOUD NATIVE ERA, SHAHAR MINTZ, EggPack
PPTX
SOLVING THE DEVOPS CRISIS, ONE PERSON AT A TIME, CHRISTINA BABITSKI, Develeap
PPTX
OPTIMIZING PERFORMANCE USING CONTINUOUS PRODUCTION PROFILING ,YONATAN GOLDSCH...
PPTX
HOW TO SCALE YOUR ONCALL OPERATION, AND SURVIVE TO TELL, ANTON DRUKH
PPTX
HOW TO OPTIMIZE NON-CODING TIME, ORI KEREN, LinearB
PPTX
FLYING BLIND - ACCESSIBILITY IN MONITORING, FEU MOUREK, Icinga
PPTX
(Ignite) WHAT'S BURNING THROUGH YOUR CLOUD BILL - GIL BAHAT, CIDER SECURITY
PPTX
SLO DRIVEN DEVELOPMENT, ALON NATIV, Tomorrow.io
PPTX
ONBOARDING IN LOCKDOWN, HILA FOX, Augury
PPTX
DON'T PANIC: GETTING YOUR INFRASTRUCTURE DRIFT UNDER CONTROL, ERAN BIBI, Firefly
YOUR OPEN SOURCE PROJECT IS LIKE A STARTUP, TREAT IT LIKE ONE, EYAR ZILBERMAN...
GRAPHQL TO THE RES(T)CUE, ELLA SHARAKANSKI, Salto
MICROSERVICES ABOVE THE CLOUD - DESIGNING THE INTERNATIONAL SPACE STATION FOR...
THE (IR)RATIONAL INCIDENT RESPONSE: HOW PSYCHOLOGICAL BIASES AFFECT INCIDENT ...
PRINCIPLES OF OBSERVABILITY // DANIEL MAHER, DataDog
NUDGE AND SLUDGE: DRIVING SECURITY WITH DESIGN // J. WOLFGANG GOERLICH, Duo S...
(Ignite) TAKE A HIKE: PREVENTING BATTERY CORROSION - LEAH VOGEL, CHEGG
BUILDING A DR PLAN FOR YOUR CLOUD INFRASTRUCTURE FROM THE GROUND UP, MOSHE BE...
THE THREE DISCIPLINES OF CI/CD SECURITY, DANIEL KRIVELEVICH, Cider Security
THE PLEASURES OF ON-PREM, TOMER GABEL
CONFIGURATION MANAGEMENT IN THE CLOUD NATIVE ERA, SHAHAR MINTZ, EggPack
SOLVING THE DEVOPS CRISIS, ONE PERSON AT A TIME, CHRISTINA BABITSKI, Develeap
OPTIMIZING PERFORMANCE USING CONTINUOUS PRODUCTION PROFILING ,YONATAN GOLDSCH...
HOW TO SCALE YOUR ONCALL OPERATION, AND SURVIVE TO TELL, ANTON DRUKH
HOW TO OPTIMIZE NON-CODING TIME, ORI KEREN, LinearB
FLYING BLIND - ACCESSIBILITY IN MONITORING, FEU MOUREK, Icinga
(Ignite) WHAT'S BURNING THROUGH YOUR CLOUD BILL - GIL BAHAT, CIDER SECURITY
SLO DRIVEN DEVELOPMENT, ALON NATIV, Tomorrow.io
ONBOARDING IN LOCKDOWN, HILA FOX, Augury
DON'T PANIC: GETTING YOUR INFRASTRUCTURE DRIFT UNDER CONTROL, ERAN BIBI, Firefly

Recently uploaded (20)

PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PPT
Teaching material agriculture food technology
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Machine learning based COVID-19 study performance prediction
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
cuic standard and advanced reporting.pdf
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Electronic commerce courselecture one. Pdf
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
A Presentation on Artificial Intelligence
PDF
Empathic Computing: Creating Shared Understanding
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Teaching material agriculture food technology
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Machine learning based COVID-19 study performance prediction
MYSQL Presentation for SQL database connectivity
Unlocking AI with Model Context Protocol (MCP)
Review of recent advances in non-invasive hemoglobin estimation
cuic standard and advanced reporting.pdf
Reach Out and Touch Someone: Haptics and Empathic Computing
Spectral efficient network and resource selection model in 5G networks
Network Security Unit 5.pdf for BCA BBA.
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Electronic commerce courselecture one. Pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
A Presentation on Artificial Intelligence
Empathic Computing: Creating Shared Understanding
“AI and Expert System Decision Support & Business Intelligence Systems”
Mobile App Security Testing_ A Comprehensive Guide.pdf
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...

Containing Chaos with Kubernetes - Terrence Ryan, Google - DevOpsDays Tel Aviv 2015