SlideShare a Scribd company logo
OpenShift:
The power of Kubernetes for engineers
Jorge Morales
OpenShift Developer Advocate
@jorgemoralespou
Riga Dev Days 18
Me (aka Jorge)
● Spanish by nature and by language
● Work at Red Hat
● OpenShift Developer Advocate
● Mostly Java developer
● Obsessed with improving development experience
@jorgemoralespou
github.com/jorgemoralespou
http://jorgemoral.es
09:30 – 11:00 Introduction to OpenShift
11:00 – 11:30 Refreshment/Bio Break
11:30 – 13:00 Hands on labs - part 1
13:00 – 14:00 Lunch
14:00 – 15:30 Hands on labs - part 2
15:30 – 16:00 Refreshment/Bio Break
16:00 – 17:00 Hands on labs - part 3
17:00 – 17:30 Recap
Agenda
INTRODUCTION TO OPENSHIFT
Goals
1. Quick Introduction to Containers, Kubernetes,
and OpenShift
2. Show You the Power of it All in Action!
What is it for?
QUICK DEMO
CrunchyData
GitLab
Iron.io
Couchbase
Sonatype
EnterpriseDB
and many more
8
...and virtually
any docker
image
out there!
TRUE POLYGLOT PLATFORM
PHPPythonJava NodeJS Perl Ruby
.NET
Core
Apache
HTTP
Server
MySQL Redis
nginx TomcatVarnish
JBoss
EAP
JBoss
A-MQ
JBoss
Fuse
JBoss
BRMS
JBoss
BPMS
JBoss
Data Grid
JBoss
Data Virt
RH
Mobile
RH SSO
3SCALE
API mgmt
JBoss
Web
Server
Spring
Boot
Wildfly
Swarm
Vert.x
PostgreSQL MongoDB
Phusion
Passenger
Third-party
Language
Runtimes
Third-party
Databases
Third-party
App
Runtimes
Third-party
Middleware
Third-party
Middleware
But why?
BUSINESS TECHNOLOGY
PRODUCT
OWNER OPERATIONS
BUSINESS
ANALYST
DEVELOPER
TESTER
BUSINESS TECHNOLOGY
PRODUCT
OWNER OPERATIONS
BUSINESS
ANALYST
DEVELOPER
TESTER
BUSINESS TECHNOLOGY
PRODUCT
OWNER OPERATIONS
BUSINESS
ANALYST
DEVELOPER
TESTER
13
A DRIVER
CONTAINERS
Adopting a
container-based strategy
helps applications to be
easily shared and
deployed.
14
APPLICATIONS REQUIRE MANY CONTAINERS.
HOW DO YOU DELIVER AND MANAGE THEM AT SCALE?
The industry’s most secure
and comprehensive
enterprise-grade container
platform based on industry
standards, Docker and
Kubernetes.
BUILD, DEPLOY, AND MANAGE AT SCALE
WITH RED HAT OPENSHIFT CONTAINER PLATFORM
15
What is it built from?
How you get it
Why containers?
WHAT ARE CONTAINERS?
It Depends Who You Ask
● Sandboxed application processes on a
shared Linux OS kernel
● Simpler, lighter, and denser than virtual
machines
● Portable across different environments
● Package my application and all of its
dependencies
● Deploy to any environment in seconds and
enable CI/CD
● Easily access and share containerized
components
INFRASTRUCTURE APPLICATIONS
VMs vs Containers
VIRTUAL MACHINES CONTAINERS
virtual machines are isolated
apps are not
containers are isolated
so are the apps
VM
OS Dependencies
Kernel
Hypervisor
Hardware
App App App App
Hardware
Container Host (Kernel)
Container
App
OS deps
Container
App
OS deps
Container
App
OS deps
Container
App
OS deps
https://github.com/openshift-evangelists/workshop-summit/blob/master/nginx/Dockerfile
FROM centos
ADD nginx.repo /etc/yum.repos.d/
RUN yum update -y && yum install -y nginx
RUN mkdir -p /nginx
ADD nginx.sh /nginx/
RUN chmod 777 -R /nginx
EXPOSE 8080
WORKDIR /nginx
VOLUME ["/nginx/html"]
VOLUME ["/nginx/logs"]
CMD ["./nginx.sh"]
$ docker build -t app:v1 .
$ docker run app:v1
Orchestration,
Scheduling, Clustering,
Shared Storage are All
Still Needed
Kubernetes is an
open-source platform
designed to automate
deploying, scaling, and
operating application
containers.
With Kubernetes, you are able to quickly and efficiently
respond to customer demand:
● Deploy your applications quickly and predictably.
● Scale your applications on the fly.
● Roll out new features seamlessly.
● Limit hardware usage to required resources only.
Need to provide a good
experience for developers
and not just IT operations
Openshift: The power of kubernetes for engineers - Riga Dev Days 18
Openshift: The power of kubernetes for engineers - Riga Dev Days 18
Atomic Host
Container Runtime & Packaging
(Docker)
Red Hat Enterprise Linux
Infrastructure Automation & Mg
Networking Storage Registry
Logs &
Metrics
Security
Container Orchestration & Cluster Management
(kubernetes)
OpenShift Application Lifecycle Management
(CI/CD)
Build Automation Deployment Automation
Service Catalog
(Language Runtimes, Middleware, Databases)
Self-Service
Container
Business
Automation
Container
Integration
Container
Data &
Storage
Container
Web &
Mobile
Self-Service
Multi-language
Automation
Collaboration
Multi-tenant
Standards-based
Web-scale
Open Source
Enterprise Grade
Secure
So, why OpenShift
1. You want more out of containers
2. You want more out of Kubernetes
3. You are smart, focusing on the things
you enjoy doing
How it works
Openshift: The power of kubernetes for engineers - Riga Dev Days 18
Openshift: The power of kubernetes for engineers - Riga Dev Days 18
Openshift: The power of kubernetes for engineers - Riga Dev Days 18
Openshift: The power of kubernetes for engineers - Riga Dev Days 18
Openshift: The power of kubernetes for engineers - Riga Dev Days 18
Openshift: The power of kubernetes for engineers - Riga Dev Days 18
Openshift: The power of kubernetes for engineers - Riga Dev Days 18
cpu=
mem=
ENV=
...
cpu=
mem=
ENV=
...
cpu=
mem=
ENV=
...
Pod
Nodes
Master nodes
OpenShift Cluster
Users and Groups
USER
&
GROUPS
● USER
● GROUPS
● SERVICEACCOUNTS
types:
● system:authenticated
● system:admin
● system:serviceaccounts:myproject
● jorge
● john
● admin
● system:serviceaccount:myproject:default
● system:serviceaccount:myproject:builder
● system:serviceaccount:myproject:deployer
Scopes / Multitenancy
projectB
projectC
projectA
PROJECT (a.k.a namespace)
PROJECT
SCOPED
CLUSTER
SCOPED
Constrains:
● Resources
● Visibility
View all
View project
Authn & Authz
API Server
Store state
API Server
etcd
API Server
etcd
Scheduler
Workload placement
dev test prod
dc1
dc2
API Server
etcd
Scheduler
Workloads
● Stateless
○ ReplicaSet (also known as ReplicationController)
● Stateful
○ StatefulSet (previously known as PetSet)
● Batch
○ Jobs
○ CronJobs
● Daemon
○ DaemonSet
Workload execution guarantees
API Server
etcd
Scheduler
Repl. Ctrlr
Workload execution guarantees
API Server
etcd
Scheduler
Repl. Ctrlr
Workload execution guarantees
API Server
etcd
Scheduler
Repl. Ctrlr
Scalability
API Server
etcd
Scheduler
Repl. Ctrlr
Service frontend
API Server
etcd
Scheduler
Repl. Ctrlr
Service
API Server
etcd
Scheduler
Repl. Ctrlr
frontend
IP
DNS NAME
DNS
API Server
etcd
Scheduler
Repl. Ctrlr
DNS
PersistentVolume and PersistentVolumeClaim
API Server
etcd
Scheduler
Repl. Ctrlr
DNS
PV 5GB NFS
Configuring apps
API Server
etcd
Scheduler
Repl. Ctrlr
DNS
PV 5GB NFS
username=XYZ
password=XYZ
databasename=XYZ
Linking services
API Server
etcd
Scheduler
Repl. Ctrlr
DNS
username=XYZ
password=XYZ
databasename=XYZ
username=XYZ
password=XYZ
databasename=XYZ
Linking services
API Server
etcd
Scheduler
Repl. Ctrlr
DNS
service=database
Routing
API Server
etcd
Scheduler
Repl. Ctrlr
DNS
myapp.example.com
Source 2 Image Walk Through
Code
Build
Deploy
Container
Image
Registry
Source 2 Image Walk Through
Code
Developers can leverage existing
development tools and then access
the OpenShift Web, CLI or IDE
interfaces to create new application
services and push source code via
GIT. OpenShift can also accept
binary deployments or be fully
integrated with a customer’s
existing CI/CD environment.
Source 2 Image Walk Through
Build
OpenShift automates the Docker
image build process with
Source-to-Image (S2I). S2I
combines source code with a
corresponding Builder image from
the integrated Docker registry.
Builds can also be triggered
manually or automatically by setting
a Git webhook. Add in Build
pipelines
Container
Image
Registry
Source 2 Image Walk Through
Deploy
OpenShift automates the
deployment of application
containers across multiple Node
hosts via the Kubernetes
scheduler. Users can automatically
trigger deployments on application
changes and do rollbacks,
configure A/B deployments & other
custom deployment types.
Container
Image
Registry
Image distribution
API Server
etcd
Scheduler
Repl. Ctrlr
DNS
Registry
Docker hub
Time to try it out
Hands on!
bit.ly/openshift-rigadevdays18
NOTE: The platform is shared. Don’t abuse it
OPENSHIFT CONCEPTS
SUMMARY RECAP
7
1
A container is the smallest compute unit
CONTAINER
7
2
containers are created from
container images
CONTAINER
CONTAINER
IMAGE
BINARY RUNTIME
7
3
IMAGE REGISTRY
container images are stored in
an image registry
CONTAINER
CONTAINER
IMAGE
CONTAINER
IMAGE
CONTAINER
IMAGE
CONTAINER
IMAGE
CONTAINER
IMAGE
CONTAINER
IMAGE
an image repository contains all versions of an
image in the image registry
7
4
IMAGE REGISTRY
frontend:latest
frontend:2.0
frontend:1.1
frontend:1.0
CONTAINER
IMAGE
mongo:latest
mongo:3.7
mongo:3.6
mongo:3.4
CONTAINER
IMAGE
myregistry/frontend myregistry/mongo
PODPOD
containers are wrapped in pods which are
units of deployment and management
7
5
CONTAINER CONTAINERCONTAINER
IP: 10.1.0.11 IP: 10.1.0.55
pods configuration is defined
in a deployment
7
6
image name
replicas
labels
cpu
memory
storage
POD
CONTAINER
POD
CONTAINER
POD
CONTAINER
DEPLOYMENT
POD
services provide internal load-balancing and
service discovery across pods
7
7
CONTAINER
POD
CONTAINER
POD
CONTAINER
BACKEND SERVICE
POD
CONTAINER
role: backend
role: backendrole: backendrole: backendrole: frontend
POD
apps can talk to each other via services
7
8
CONTAINER
POD
CONTAINER
POD
CONTAINER
BACKEND SERVICE
POD
CONTAINER
role: backend
role: backendrole: backendrole: backendrole: frontend
Invoke
Backend API
POD
routes add services to the external load-balancer and
provide readable urls for the app
7
9
CONTAINER
POD
CONTAINER
POD
CONTAINER
BACKEND SERVICE
ROUTE
app-prod.mycompany.com
> curl http://app-prod.mycompany.com
projects allow managing apps in isolation from other
environments, teams, groups and departments
8
0
POD
C
POD
C
POD
C
PAYMENT DEV
POD
C
POD
C
POD
C
PAYMENT PROD
POD
C
POD
C
POD
C
CATALOG
POD
C
POD
C
POD
C
INVENTORY
❌
❌❌
Where to next
Self Paced Tutorials - https://learn.openshift.com/
Developer Resources
● eBook (O’Reilly): DevOps with OpenShift
https://www.openshift.com/promotions/devops-with-openshift.html
● eBook (O'Reilly): OpenShift for Developers:
https://www.openshift.com/promotions/for-developers.html
● eBook (O'Reilly): Deploying to OpenShift:
https://www.openshift.com/deploying-to-openshift/
https://www.openshift.org/minishift/
The code for this labs
● Source code for the examples:
○ https://github.com/openshift-roadshow
● Source code for instructions:
○ https://github.com/openshift-labs/starter-guides
THANK YOU
86

More Related Content

What's hot (20)

ODP
Build a PaaS with OpenShift Origin
Steven Pousty
 
PDF
OpenShift 4 installation
Robert Bohne
 
PDF
OpenShift As A DevOps Platform
Lalatendu Mohanty
 
ODP
DevOps @ OpenShift Online
OpenShift Origin
 
PDF
Build and run applications in a dockerless kubernetes world
Jorge Morales
 
ODP
OpenShift Enterprise
Ali Sadeghi Ardestani
 
PDF
Red Hat Forum Benelux 2015
Microsoft
 
PDF
Automate App Container Delivery with CI/CD and DevOps
Daniel Oh
 
PPTX
DEVNET-1183 OpenShift + Kubernetes + Docker
Cisco DevNet
 
PDF
Puzzle ITC Talk @Docker CH meetup CI CD_with_Openshift_0.2
Amrita Prasad
 
ODP
From Zero to Cloud: Revolutionize your Application Life Cycle with OpenShift ...
OpenShift Origin
 
PDF
Build Your Own PaaS, Just like Red Hat's OpenShift from LinuxCon 2013 New Orl...
OpenShift Origin
 
PDF
Developer joy for distributed teams with CodeReady Workspaces | DevNation Tec...
Red Hat Developers
 
PDF
Building Domain-specific PaaS with OpenShift Origin: The TRESOR Healthcare P...
OpenShift Origin
 
PPTX
Docker Container As A Service - Mix-IT 2016
Patrick Chanezon
 
PDF
Kubernetes Architecture - beyond a black box - Part 2
Hao H. Zhang
 
PPTX
Docker Container As A Service - March 2016
Patrick Chanezon
 
ODP
Deploying & Scaling OpenShift on OpenStack using Heat - OpenStack Seattle Mee...
Diane Mueller
 
ODP
DevOps, PaaS and the Modern Enterprise CloudExpo Europe presentation by Diane...
OpenShift Origin
 
PPTX
OpenShift: Devops Made Easy
Bent Terp
 
Build a PaaS with OpenShift Origin
Steven Pousty
 
OpenShift 4 installation
Robert Bohne
 
OpenShift As A DevOps Platform
Lalatendu Mohanty
 
DevOps @ OpenShift Online
OpenShift Origin
 
Build and run applications in a dockerless kubernetes world
Jorge Morales
 
OpenShift Enterprise
Ali Sadeghi Ardestani
 
Red Hat Forum Benelux 2015
Microsoft
 
Automate App Container Delivery with CI/CD and DevOps
Daniel Oh
 
DEVNET-1183 OpenShift + Kubernetes + Docker
Cisco DevNet
 
Puzzle ITC Talk @Docker CH meetup CI CD_with_Openshift_0.2
Amrita Prasad
 
From Zero to Cloud: Revolutionize your Application Life Cycle with OpenShift ...
OpenShift Origin
 
Build Your Own PaaS, Just like Red Hat's OpenShift from LinuxCon 2013 New Orl...
OpenShift Origin
 
Developer joy for distributed teams with CodeReady Workspaces | DevNation Tec...
Red Hat Developers
 
Building Domain-specific PaaS with OpenShift Origin: The TRESOR Healthcare P...
OpenShift Origin
 
Docker Container As A Service - Mix-IT 2016
Patrick Chanezon
 
Kubernetes Architecture - beyond a black box - Part 2
Hao H. Zhang
 
Docker Container As A Service - March 2016
Patrick Chanezon
 
Deploying & Scaling OpenShift on OpenStack using Heat - OpenStack Seattle Mee...
Diane Mueller
 
DevOps, PaaS and the Modern Enterprise CloudExpo Europe presentation by Diane...
OpenShift Origin
 
OpenShift: Devops Made Easy
Bent Terp
 

Similar to Openshift: The power of kubernetes for engineers - Riga Dev Days 18 (20)

PDF
Ippevent : openshift Introduction
kanedafromparis
 
ODP
Openshift: Build, deploy & manage open, standard containers
Jonh Wendell
 
PDF
Openshift meetup Paris - 21/03/2018
kanedafromparis
 
ODP
Openshift Container Platform
DLT Solutions
 
PDF
OpenShift meetup Bangalore
Suraj Deshmukh
 
PDF
TechEvent OpenShift for Developers
Trivadis
 
PPTX
Red Hat Openshift Fundamentals.pptx
ssuser18b1c6
 
PDF
Open shift and docker - october,2014
Hojoong Kim
 
PPTX
APPLICATIONS AND CONTAINERS AT SCALE: OpenShift + Kubernetes + Docker
Steven Pousty
 
PPTX
DevFestMN 2017 - Learning Docker and Kubernetes with Openshift
Keith Resar
 
PPTX
[DevDay 2017] OpenShift Enterprise - Speaker: Linh Do - DevOps Engineer at Ax...
DevDay Da Nang
 
PPTX
App Mod 02: A developer intro to open shift
Judy Breedlove
 
PDF
PuppetConf 2016: Using Puppet with Kubernetes and OpenShift – Diane Mueller, ...
Puppet
 
PPTX
FICO Open Shift presentation
Nicholas Gerasimatos
 
PDF
OpenShift Overview - Red Hat Open House 2017
Rodolfo Carvalho
 
PDF
Openshift cheat rhce_r3v1 rhce
Darnette A
 
PDF
Kubernetes 101 - an Introduction to Containers, Kubernetes, and OpenShift
DevOps.com
 
PDF
OpenShift Overview - Red Hat Open School 2017
Rodolfo Carvalho
 
PDF
Red Hat OpenShift Container Platform Overview
James Falkner
 
PDF
Red Hat OpenShift V3 Overview and Deep Dive
Greg Hoelzer
 
Ippevent : openshift Introduction
kanedafromparis
 
Openshift: Build, deploy & manage open, standard containers
Jonh Wendell
 
Openshift meetup Paris - 21/03/2018
kanedafromparis
 
Openshift Container Platform
DLT Solutions
 
OpenShift meetup Bangalore
Suraj Deshmukh
 
TechEvent OpenShift for Developers
Trivadis
 
Red Hat Openshift Fundamentals.pptx
ssuser18b1c6
 
Open shift and docker - october,2014
Hojoong Kim
 
APPLICATIONS AND CONTAINERS AT SCALE: OpenShift + Kubernetes + Docker
Steven Pousty
 
DevFestMN 2017 - Learning Docker and Kubernetes with Openshift
Keith Resar
 
[DevDay 2017] OpenShift Enterprise - Speaker: Linh Do - DevOps Engineer at Ax...
DevDay Da Nang
 
App Mod 02: A developer intro to open shift
Judy Breedlove
 
PuppetConf 2016: Using Puppet with Kubernetes and OpenShift – Diane Mueller, ...
Puppet
 
FICO Open Shift presentation
Nicholas Gerasimatos
 
OpenShift Overview - Red Hat Open House 2017
Rodolfo Carvalho
 
Openshift cheat rhce_r3v1 rhce
Darnette A
 
Kubernetes 101 - an Introduction to Containers, Kubernetes, and OpenShift
DevOps.com
 
OpenShift Overview - Red Hat Open School 2017
Rodolfo Carvalho
 
Red Hat OpenShift Container Platform Overview
James Falkner
 
Red Hat OpenShift V3 Overview and Deep Dive
Greg Hoelzer
 
Ad

More from Jorge Morales (9)

PDF
OpenShift for developers in action! - jbcnconf19
Jorge Morales
 
PDF
Put the dev back in devops - Cloud-native at local speed! - RH Summit 19
Jorge Morales
 
PDF
Automating with operators - FossAsia Summit 2019
Jorge Morales
 
PDF
Odo improving the developer experience on OpenShift - hack & sangria
Jorge Morales
 
PDF
Mastering java in containers - MadridJUG
Jorge Morales
 
PDF
Automating stateful applications with kubernetes operators - Openstack Summit...
Jorge Morales
 
PDF
Improving the developer experience on OpenShift - devconf-india-18
Jorge Morales
 
PDF
Build and run applications in a dockerless kubernetes world - DevConf India 18
Jorge Morales
 
PDF
I tried to dockerize my app but I had to PaaS
Jorge Morales
 
OpenShift for developers in action! - jbcnconf19
Jorge Morales
 
Put the dev back in devops - Cloud-native at local speed! - RH Summit 19
Jorge Morales
 
Automating with operators - FossAsia Summit 2019
Jorge Morales
 
Odo improving the developer experience on OpenShift - hack & sangria
Jorge Morales
 
Mastering java in containers - MadridJUG
Jorge Morales
 
Automating stateful applications with kubernetes operators - Openstack Summit...
Jorge Morales
 
Improving the developer experience on OpenShift - devconf-india-18
Jorge Morales
 
Build and run applications in a dockerless kubernetes world - DevConf India 18
Jorge Morales
 
I tried to dockerize my app but I had to PaaS
Jorge Morales
 
Ad

Recently uploaded (20)

PDF
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 
PDF
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
PPTX
Agentic Automation Journey Session 1/5: Context Grounding and Autopilot for E...
klpathrudu
 
PPTX
Coefficient of Variance in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PPTX
In From the Cold: Open Source as Part of Mainstream Software Asset Management
Shane Coughlan
 
PPTX
Tally software_Introduction_Presentation
AditiBansal54083
 
PPTX
Foundations of Marketo Engage - Powering Campaigns with Marketo Personalization
bbedford2
 
PDF
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
PPTX
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
PPTX
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
PDF
TheFutureIsDynamic-BoxLang witch Luis Majano.pdf
Ortus Solutions, Corp
 
PDF
SciPy 2025 - Packaging a Scientific Python Project
Henry Schreiner
 
PPTX
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
PPTX
Finding Your License Details in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PPTX
Homogeneity of Variance Test Options IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PDF
vMix Pro 28.0.0.42 Download vMix Registration key Bundle
kulindacore
 
PDF
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
PDF
MiniTool Partition Wizard Free Crack + Full Free Download 2025
bashirkhan333g
 
PPTX
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PPTX
OpenChain @ OSS NA - In From the Cold: Open Source as Part of Mainstream Soft...
Shane Coughlan
 
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
Agentic Automation Journey Session 1/5: Context Grounding and Autopilot for E...
klpathrudu
 
Coefficient of Variance in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
In From the Cold: Open Source as Part of Mainstream Software Asset Management
Shane Coughlan
 
Tally software_Introduction_Presentation
AditiBansal54083
 
Foundations of Marketo Engage - Powering Campaigns with Marketo Personalization
bbedford2
 
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
TheFutureIsDynamic-BoxLang witch Luis Majano.pdf
Ortus Solutions, Corp
 
SciPy 2025 - Packaging a Scientific Python Project
Henry Schreiner
 
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
Finding Your License Details in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Homogeneity of Variance Test Options IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
vMix Pro 28.0.0.42 Download vMix Registration key Bundle
kulindacore
 
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
MiniTool Partition Wizard Free Crack + Full Free Download 2025
bashirkhan333g
 
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
OpenChain @ OSS NA - In From the Cold: Open Source as Part of Mainstream Soft...
Shane Coughlan
 

Openshift: The power of kubernetes for engineers - Riga Dev Days 18