зеркало из https://github.com/microsoft/Reactors.git
Created folders for Feb Linux on azure series EN and ESP
This commit is contained in:
Родитель
bf0ebf9a23
Коммит
60fe3d1df1
|
@ -0,0 +1,14 @@
|
|||
# Introducción a Linux en Azure
|
||||
|
||||
Linux es un sistema operativo gratuito y de código abierto, al igual que Microsoft Windows o macOS. Debido a esto, son opciones tremendamente populares para servidores e infraestructura subyacente cuando se trata de computación en la nube. En esta serie, cubriremos los conceptos básicos de Linux en Azure. Desde una introducción al shell y los comandos de Bash, infraestructura como código con Terraform, contenedores con Docker y administración de contenedores con el servicio Azure Kubernetes. Linux es una habilidad imprescindible cuando se trata de la nube y no hay mejor momento para aprender que ahora.
|
||||
|
||||
|
||||
Fecha | Título | Enlace para registrarse | Grabación
|
||||
--- | :--- | :--- | :---
|
||||
Febrero 3 2022 |[Introducción a bash](intro-a-bash/README.md) | [MeetUp](https://www.meetup.com/Microsoft-Reactor-New-York/events/283249272/) |
|
||||
Febrero 10 2022 |[Introducción a automated deployments on Azure with Terraform](intro-a-terraform/README.md) | [MeetUp](https://www.meetup.com/Microsoft-Reactor-New-York/events/283271436/) |
|
||||
Febrero 17 2022 | [Introducción a contenedores en Azure con Docker](intro-a-docker/README.md) | [MeetUp](https://www.meetup.com/Microsoft-Reactor-New-York/events/283250322/) |
|
||||
Febrero 24 2022 | [Introducción a Azure Kubernetes Service](intro-a-aks/README.md) | [MeetUp](https://www.meetup.com/Microsoft-Reactor-New-York/events/283250709/) |
|
||||
## Enlaces relevantes para esta serie
|
||||
|
||||
- [Gwyn Pena-Siguenza Twitter](https://twitter.com/madebygps)
|
|
@ -0,0 +1,12 @@
|
|||
# Introducción a Azure Kubernetes Service
|
||||
|
||||
|
||||
Un contenedor es una unidad atómica de software que empaqueta código, dependencias y configuración para una aplicación específica. El proceso de implementación, actualización, monitoreo y eliminación de contenedores presenta muchos desafíos. Kubernetes es una plataforma de código abierto extensible y portátil para automatizar la implementación, el escalado y la gestión de cargas de trabajo en contenedores. Azure Kubernetes Service (AKS) administra su entorno Kubernetes alojado y simplifica la implementación y administración de aplicaciones en contenedores en Azure. En esta sesión, cubriremos los conceptos básicos de Azure Kubernetes Service e implementaremos una aplicación en contenedores en Azure Kubernetes Service.
|
||||
|
||||
|
||||
## Recursos
|
||||
|
||||
- [Introducción a Azure Kubernetes Service](https://docs.microsoft.com/learn/modules/intro-to-azure-kubernetes-service/)
|
||||
- [Implementación de una aplicación en contenedores en Azure Kubernetes Service](https://docs.microsoft.com/learn/modules/aks-deploy-container-app/)
|
||||
- [Gwyn Pena-Siguenza Twitter](https://twitter.com/madebygps)
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
# Introducción to Bash
|
||||
|
||||
Bash es el lenguaje de programación de shell estándar para Linux. Un shell es un programa que ordena al sistema operativo que realice acciones. Los shells como PowerShell y Bash brindan a los administradores de sistemas la potencia y la precisión que necesitan para un control preciso de las computadoras de las que son responsables. En esta sesión, cubriremos comandos como ls, cat y ps. Obtenga información sobre cómo redirigir la entrada y la salida, cómo encontrar y finalizar procesos no autorizados y cómo filtrar la salida de la CLI de Azure. Una vez que termine esta sesión, se sentirá más cómodo usando un shell para automatizar sus tareas de Linux.
|
||||
|
||||
## Recursos
|
||||
|
||||
- [Microsoft Learn Introducción a Bash](https://docs.microsoft.com/learn/modules/bash-Introducción/)
|
||||
- [Gwyn Pena-Siguenza Twitter](https://twitter.com/madebygps)
|
||||
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
# Introducción a contenedores en Azure con Docker
|
||||
|
||||
Un contenedor es un entorno vagamente aislado que nos permite crear y ejecutar paquetes de software. Estos paquetes de software incluyen el código y todas las dependencias para ejecutar aplicaciones de forma rápida y fiable en cualquier entorno informático. A estos paquetes los llamamos imágenes de contenedores. Docker es una plataforma de contenedorización que se utiliza para desarrollar, enviar y ejecutar contenedores. En esta sesión, cubriremos los conceptos básicos de Docker y cómo ejecutar contenedores de Docker con Azure Container Instances.
|
||||
|
||||
|
||||
## Recursos
|
||||
|
||||
- [Introducción a los contenedores de Docker](https://docs.microsoft.com/learn/modules/intro-to-docker-containers/)
|
||||
- [Compilación de una aplicación web en contenedores con Docker](https://docs.microsoft.com/learn/modules/intro-to-containers/)
|
||||
- [Administración de contenedores en Azure](https://docs.microsoft.com/learn/paths/administer-containers-in-azure/)
|
||||
- [Gwyn Pena-Siguenza Twitter](https://twitter.com/madebygps)
|
||||
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
# Introducción a las implementaciones automatizadas en Azure con Terraform
|
||||
|
||||
Hashicorp Terraform es una herramienta de código abierto para aprovisionar y administrar la infraestructura de la nube. Codifica la infraestructura en archivos de configuración que describen la topología de los recursos de la nube. Estos recursos incluyen máquinas virtuales, cuentas de almacenamiento e interfaces de red. Terraform CLI proporciona un mecanismo simple para implementar y versionar los archivos de configuración en Azure. En esta sesión, configuraremos Terraform con la CLI de Azure y cubriremos los conceptos básicos sobre cómo usarlo para automatizar sus implementaciones de Azure.
|
||||
|
||||
|
||||
## Recursos
|
||||
|
||||
- [Configuración de una máquina virtual Linux con infraestructura en Azure mediante Terraform](https://docs.microsoft.com/azure/developer/terraform/create-linux-virtual-machine-with-infrastructure)
|
||||
- [Automatización de la administración de recursos en la nube](https://docs.microsoft.com/learn/modules/cmu-orchestration/)
|
||||
- [Terraform's Azure Provider GitHub](https://github.com/hashicorp/terraform-provider-azurerm/tree/main/examples)
|
||||
- [Prueba del código de Terraform](https://docs.microsoft.com/azure/developer/terraform/best-practices-testing-overview)
|
||||
- [Gwyn Pena-Siguenza Twitter](https://twitter.com/madebygps)
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
# Introduction to Linux on Azure
|
||||
|
||||
Linux is a free and open-source operating system, just like Microsoft Windows or macOS. Because of this, it’s wildly popular options for servers and underlying infrastructure when it comes to cloud computing. IN this series, we’ll be covering the basics of Linux on Azure. From an introduction to the Bash shell and commands, Infrastructure as Code with Terraform, containers with Docker, and container management with Azure Kubernetes service. Linux is a must skill when it comes to Cloud and there’s no better time to learn than now.
|
||||
|
||||
Date | Title | Register Link | Recording
|
||||
--- | :--- | :--- | :---
|
||||
Febuary 1st 2022 |[Introduction to bash](intro-to-bash/README.md) | [MeetUp](https://www.meetup.com/Microsoft-Reactor-New-York/events/282573489/) |
|
||||
Febuary 8th 2022 |[Introduction to automated deployments on Azure with Terraform](intro-to-iac-terraform/README.md) | [MeetUp](https://www.meetup.com/Microsoft-Reactor-New-York/events/282573556/) |
|
||||
Febuary 15th 2022 | [Introduction to containers in Azure with Docker](intro-to-docker-azure/README.md) | [MeetUp](https://www.meetup.com/Microsoft-Reactor-New-York/events/282573609/) |
|
||||
Febuary 22nd 2022 | [Introduction to Azure Kubernetes Service](intro-to-aks/README.md) | [MeetUp](https://www.meetup.com/Microsoft-Reactor-New-York/events/282573670/) |
|
||||
|
||||
## Resources
|
||||
|
||||
- [Gwyneth Pena Siguenza Twitter](https://twitter.com/madebygps)
|
||||
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
# Introduction to Azure Kubernetes Service
|
||||
|
||||
|
||||
A container is an atomic unit of software that packages up code, dependencies, and configuration for a specific application. The process of deploying, updating, monitoring, and removing containers introduces many challenges. Kubernetes is a portable, extensible open-source platform for automating deployment, scaling, and the management of containerized workloads. Azure Kubernetes Service (AKS) manages your hosted Kubernetes environment and makes it simple to deploy and manage containerized applications in Azure. In this session we’ll be covering the basics of Azure Kubernetes Service and deploy a containerized application on Azure Kubernetes Service.
|
||||
|
||||
|
||||
## Links
|
||||
|
||||
- [Introduction to Azure Kubernetes Service](https://docs.microsoft.com/learn/modules/intro-to-azure-kubernetes-service/)
|
||||
- [Deploy a containerized application on Azure Kubernetes Service](https://docs.microsoft.com/learn/modules/aks-deploy-container-app/)
|
||||
- [Gwyn Pena-Siguenza Twitter](https://twitter.com/madebygps)
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
# Introduction to Bash
|
||||
|
||||
Bash is the standard shell scripting language for Linux. A shell is a program that commands the operating system to perform actions. Shells like PowerShell and Bash give system administrators the power and precision they need for fine-tuned control of the computers they're responsible for. In this session we’ll cover commands such as ls, cat, and ps. Learn how to redirect input and output, how to find and terminate rogue processes and how to filter Azure CLI output. Once this session is over, you’ll feel more comfortable using a shell to automate your Linux tasks.
|
||||
|
||||
## Resources
|
||||
|
||||
- [Microsoft Learn Introduction to Bash](https://docs.microsoft.com/learn/modules/bash-introduction/)
|
||||
- [Gwyn Pena-Siguenza Twitter](https://twitter.com/madebygps)
|
||||
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
# Introduction to containers in Azure with Docker
|
||||
|
||||
A container is a loosely isolated environment that allows us to build and run software packages. These software packages include the code and all dependencies to run applications quickly and reliably on any computing environment. We call these packages container images. Docker is a containerization platform used to develop, ship, and run containers. In this session we’ll cover the basics of Docker and how to Run Docker containers with Azure Container Instances
|
||||
|
||||
|
||||
## Links
|
||||
|
||||
- [Introduction to Docker Containers](https://docs.microsoft.com/learn/modules/intro-to-docker-containers/)
|
||||
- [Build a containerized web application with Docker](https://docs.microsoft.com/learn/modules/intro-to-containers/)
|
||||
- [Administer containers in Azure](https://docs.microsoft.com/learn/paths/administer-containers-in-azure/)
|
||||
- [Gwyn Pena-Siguenza Twitter](https://twitter.com/madebygps)
|
||||
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
# Introduction to automated deployments on Azure with Terraform
|
||||
|
||||
Hashicorp Terraform is an open-source tool for provisioning and managing cloud infrastructure. It codifies infrastructure in configuration files that describe the topology of cloud resources. These resources include virtual machines, storage accounts, and networking interfaces. The Terraform CLI provides a simple mechanism to deploy and version the configuration files to Azure. In this session, we’ll be configuring Terraform with the Azure CLI and covering the basics on how to use it to automate your Azure deployments.
|
||||
|
||||
|
||||
|
||||
## Resources
|
||||
|
||||
- [Configure a Linux VM with infrastructure in Azure using Terraform](https://docs.microsoft.com/azure/developer/terraform/create-linux-virtual-machine-with-infrastructure)
|
||||
- [Automate cloud resource management](https://docs.microsoft.com/learn/modules/cmu-orchestration/)
|
||||
- [Terraform's Azure Provider GitHub](https://github.com/hashicorp/terraform-provider-azurerm/tree/main/examples)
|
||||
- [Testing Terraform code](https://docs.microsoft.com/azure/developer/terraform/best-practices-testing-overview)
|
||||
- [Rishab Kumar on Twitter](https://twitter.com/rishabk7)
|
||||
- [Gwyn Pena-Siguenza Twitter](https://twitter.com/madebygps)
|
||||
|
Загрузка…
Ссылка в новой задаче