Azure Container Service

SQE em DataArt
22 de Sep de 2017
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
Azure Container Service
1 de 42

Mais conteúdo relacionado

Mais procurados

Container DevOps in AzureContainer DevOps in Azure
Container DevOps in AzureMicrosoft Tech Community
Best Practices with Azure Kubernetes ServicesBest Practices with Azure Kubernetes Services
Best Practices with Azure Kubernetes ServicesQAware GmbH
How (and why) to roll your own Docker SaaSHow (and why) to roll your own Docker SaaS
How (and why) to roll your own Docker SaaSRyan Crawford
Azure kubernetes serviceAzure kubernetes service
Azure kubernetes serviceVishwas N
Moving Applications into Azure KubernetesMoving Applications into Azure Kubernetes
Moving Applications into Azure KubernetesHussein Salman
Pipelining DevOps with Jenkins and AWSPipelining DevOps with Jenkins and AWS
Pipelining DevOps with Jenkins and AWSJimmy Ray

Mais procurados(20)

Similar a Azure Container Service

Yet Another Session about Docker and Containers​Yet Another Session about Docker and Containers​
Yet Another Session about Docker and Containers​Pedro Sousa
Mesos and Kubernetes ecosystem overviewMesos and Kubernetes ecosystem overview
Mesos and Kubernetes ecosystem overviewKrishna-Kumar
Deploy and Scale your PHP App with AWS ElasticBeanstalk and Docker- PHPTour L...Deploy and Scale your PHP App with AWS ElasticBeanstalk and Docker- PHPTour L...
Deploy and Scale your PHP App with AWS ElasticBeanstalk and Docker- PHPTour L...Corley S.r.l.
Techdays SE 2016 - Micros.. err MicrocosmosTechdays SE 2016 - Micros.. err Microcosmos
Techdays SE 2016 - Micros.. err MicrocosmosMike Martin
Modernizing existing .NET applications with Windows Containers and Azure cloudModernizing existing .NET applications with Windows Containers and Azure cloud
Modernizing existing .NET applications with Windows Containers and Azure cloudMicrosoft Tech Community
Application Deployment on OpenstackApplication Deployment on Openstack
Application Deployment on OpenstackDocker, Inc.

Similar a Azure Container Service(20)

Mais de DataArt

DataArt Custom Software Engineering with a Human ApproachDataArt Custom Software Engineering with a Human Approach
DataArt Custom Software Engineering with a Human ApproachDataArt
DataArt Healthcare & Life SciencesDataArt Healthcare & Life Sciences
DataArt Healthcare & Life SciencesDataArt
DataArt Financial Services and Capital MarketsDataArt Financial Services and Capital Markets
DataArt Financial Services and Capital MarketsDataArt
About DataArt HR PartnersAbout DataArt HR Partners
About DataArt HR PartnersDataArt
Event management в ITEvent management в IT
Event management в ITDataArt
Digital Marketing from insideDigital Marketing from inside
Digital Marketing from insideDataArt

Mais de DataArt(20)

Último

Google Cloud Study Jams Info SessionGoogle Cloud Study Jams Info Session
Google Cloud Study Jams Info SessionGDSCPCCE
LLaMA 2.pptxLLaMA 2.pptx
LLaMA 2.pptxRkRahul16
ISO Survey 2022: ISO 27001 certificates (ISMS)ISO Survey 2022: ISO 27001 certificates (ISMS)
ISO Survey 2022: ISO 27001 certificates (ISMS)Andrey Prozorov, CISM, CIPP/E, CDPSE. LA 27001
Roottoo Innovation V24_CP.pdfRoottoo Innovation V24_CP.pdf
Roottoo Innovation V24_CP.pdfroottooinnovation
Data Formats: Reading and writing JSON – XML - YAMLData Formats: Reading and writing JSON – XML - YAML
Data Formats: Reading and writing JSON – XML - YAMLCSUC - Consorci de Serveis Universitaris de Catalunya
Easy Salesforce CI/CD with Open Source Only - Dreamforce 23Easy Salesforce CI/CD with Open Source Only - Dreamforce 23
Easy Salesforce CI/CD with Open Source Only - Dreamforce 23NicolasVuillamy1

Último(20)

Azure Container Service

Notas do Editor

  1. https://mesosphere.com/blog/2015/09/25/kubernetes-and-the-dcos/
  2. From the documentation: "Azure Container Service makes it simpler for you to create, configure, and manage a cluster of virtual machines that are preconfigured to run containerized applications. It uses an optimized configuration of popular open-source scheduling and orchestration tools. This enables you to use your existing skills, or draw upon a large and growing body of community expertise, to deploy and manage container-based applications on Microsoft Azure." ACS supports Linux containers and Windows containers. The latter rely on Windows Server 2016.
  3. Here's what happens in Azure when you create an Azure Container Service with Docker Swarm as the orchestrator. Azure creates one or more master VMs to control the "swarm" of containers, as well as a Virtual Machine Scale Set, which provides the "agent" VMs in which containers run. All these VMs communicate over a private virtual network. To communicate with Docker Swarm in a master VM from a Docker client running on a local machine, you establish an SSH tunnel that forwards the local port 22375 to port 2375 in the VM (via SSH port 2200). This allows you to execute local commands that load container images and run containers in the cloud. Docker Swarm manages the container instances in the agent VMs as well as the agent VMs themselves. You don't have to know this to use Azure Container Service, but it does help explain various port forwarding commands that you employ when running the Docker client on a local machine connected to Azure.
  4. This command works in a terminal window on OS X or Linux. (Windows users need to use a third-party SSH tool such as PuTTY.) The purpose of the -L switch is to forward traffic transmitted through port 22375 on the local machine (that's the port used by the Docker CLI) to port 2375 at the other end. Docker Swarm listens on port 2375. The -p switch instructs SSH to use port 2200 rather than the default 22. The load balancer you're connecting to listens on port 2200 and forwards the SSH messages it receives to port 22 on the master VM.