Openstack-alapú privát felhő üzemeltetés

Slides:



Advertisements
Similar presentations
Profit from the cloud TM Parallels Dynamic Infrastructure AndOpenStack.
Advertisements

PRESENTED BY EDGARS BIEZAITIS What`s all the buzz about Docker Docker.
Keith Wiles DPACC vNF Overview and Proposed methods Keith Wiles – v0.5.
Build Test Integrat e Deploy Develop Languages Frameworks Cloud and Infra Data platforms.
Presented by Sujit Tilak. Evolution of Client/Server Architecture Clients & Server on different computer systems Local Area Network for Server and Client.
Windows Azure Conference 2014 Running Docker on Windows Azure.
Model a Container Runtime environment on Your Mac with VMware AppCatalyst VMworld Fabio Rapposelli
Operating Systems ECE344 Ashvin Goel ECE University of Toronto OS Design.
GAAIN Virtual Appliances: Virtual Machine Technology for Scientific Data Analysis Arihant Patawari USC Stevens Neuroimaging and Informatics Institute July.
Breaking Barriers Exploding with Possibility Breaking Barriers Exploding with Possibility The Cloud Era Unveiled.
Docker and Container Technology
Operating-System Structures
© Copyright 2012 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. Docker Overview Automating.
#msitconf. Damien Caro Technical Evangelist Manager, Что будет, если приложение поместить в контейнер? What happens if the application.
© 2012 Eucalyptus Systems, Inc. Cloud Computing Introduction Eucalyptus Education Services 2.
In Depth Introduction to Containers On Microsoft Platforms Dave Strebel Cloud Technical Specialist Microsoft.
Banjot Chanana Sr Director of Product Docker for the Enterprise with Containers as a Service.
Structured Container Delivery Oscar Renalias Accenture Container Lead (NOTE: PASTE IN PORTRAIT AND SEND BEHIND FOREGROUND GRAPHIC FOR CROP)
Docker for Ops: Operationalize Your Apps in Production Vivek Saraswat Sr. Product Evan Hazlett Sr. Software
Canadian Bioinformatics Workshops
The Docker Container Approach to Build Scalable and Performance Testing Environment Pankaj Rodge, VMware.
Intro to Docker Containers
Virtualization.
INTRO TO Presenter: PhuongNQK.
Interoperability Between Modern Clouds using DevOps
Containers as a Service with Docker to Extend an Open Platform
Organizations Are Embracing New Opportunities
Fundamentals Sunny Sharma Microsoft
Docker and Azure Container Service
Containers: The new network endpoint
Docker Birthday #3.
Intro to Docker Containers
In-Depth Introduction to Docker
Docker – kontejnerizacija na serveru Vedran Vučetić, SPAN
Containers and Virtualisation
Andrew Pruski SQL Server & Containers
Containers in HPC By Raja.
Technical Seminar Presentation PHASE - II
Amplifying feedback through Microservices and Containers
Drupal VM and Docker4Drupal For Drupal Development Platform
Windows Server & Hyper-V Containers Vaggelis Kappas
Microsoft Connect /18/ :32 PM
Drupal VM and Docker4Drupal as Consistent Drupal Development Platform
Overview Thursday, September 20, 2018.
Azhagappan Arunachalam
Chapter 2. Malware Analysis in VMs
Introduction to Docker
Using docker containers
Amplifying feedback through Microservices and Containers
Intro to Docker Containers and Orchestration in the Cloud
Virtualization Layer Virtual Hardware Virtual Networking
Microsoft Ignite NZ October 2016 SKYCITY, Auckland.
Developing for the cloud with Visual Studio
Intro about Contanier and Docker Technology
Orchestration & Container Management in EGI FedCloud
OpenShift vs. Vanilla k8s on OpenStack IaaS
MIROSLAV POPOVIĆ Docker i ASP.NET Core
Docker Some slides from Martin Meyer Vagrant Box:
DevOps in action The next level of virtualization
Introduction to Docker
DEVOPS & THE FUTURE OF TESTING
SUSE CaaS and Dell EMC.
OpenStack Summit Berlin – November 14, 2018
SQL Server 2017 on Containers
Azure Container Service
Harrison Howell CSCE 824 Dr. Farkas
Containers on Azure Peter Lasne Sr. Software Development Engineer
The Future of Database Development (with containers)
SQL Server on Containers
Presentation transcript:

Openstack-alapú privát felhő üzemeltetés 8. Containers Openstack-alapú privát felhő üzemeltetés 2017/2018 I. félév SZTE 2018.04.26. A prezentáció az EFOP-3.6.1-16-2016-00008 számú projekt támogatásával készült.

Container vs VM *https://www.docker.com/what-container

VMs Virtual machines (VMs) are an abstraction of physical hardware turning one server into many servers. The hypervisor allows multiple VMs to run on a single machine. Each VM includes a full copy of an operating system, one or more apps, necessary binaries and libraries - taking up tens of GBs. VMs can also be slow to boot. *https://www.docker.com/what-container 2019.01.13.

Containers Containers are an abstraction at the app layer that packages code and dependencies together. Multiple containers can run on the same machine and share the OS kernel with other containers, each running as isolated processes in user space. Containers take up less space than VMs (container images are typically tens of MBs in size), and start almost instantly. *https://www.docker.com/what-container 2019.01.13.

Containers and VMs *https://www.docker.com/what-container 2019.01.13.

Use cases MODERNIZE TRADITIONAL APPS MICROSERVICES The first step with Docker is to modernize the existing application portfolio. Packaging existing apps into containers immediately improves security, reduce costs, and gain cloud portability. This transformation applies modern properties to legacy applications - all without changing a single line of code. MICROSERVICES Docker containers are lightweight by design and ideal for enabling microservices application development. Accelerate development, deployment and rollback of tens or hundreds of containers composed as a single application. Whether building new microservices or transitioning monoliths to smaller services, simple to use tools make it easy to compose, deploy and maintain complex applications CONTINUOUS INTEGRATION AND DEPLOYMENT Integrate modern methodologies and automate development pipelines with the integration of Docker and DevOps. The isolated nature of containers make it conducive to rapidly changing environments by eliminating app conflicts and increasing developer productivity. Docker enables a true separation of concerns to accelerate the adoption of DevOps processes. *https://www.docker.com/what-docker 2019.01.13.

Docker Container Image Networking, Volumes Docker Compose, Swarm, … Execute Background Interactive Image Docker Hub (repo) Dockerfile Networking, Volumes Docker Compose, Swarm, … 2019.01.13.

Docs Get Started https://docs.docker.com/get-started/#docker-concepts Docker development best practices https://docs.docker.com/develop/dev-best-practices/ Best practices for writing Dockerfiles https://docs.docker.com/develop/develop-images/dockerfile_best-practices/ 2019.01.13.

Play with Docker https://training.play-with-docker.com/beginner-linux/ 2019.01.13.