Skip to content

Commit

Permalink
Merge pull request #20 from w-p-c/add-container-chapter
Browse files Browse the repository at this point in the history
Add chapter 7 (containers)
  • Loading branch information
Ayzrian authored Mar 12, 2024
2 parents 4007245 + 8d27262 commit 78665d1
Show file tree
Hide file tree
Showing 9 changed files with 89 additions and 114 deletions.
11 changes: 11 additions & 0 deletions docs/07-containers/01-introduction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
sidebar_position: 1
---

# Introduction

## Goals

- Review the concept of containers in cloud computing.
- Explore container hosting options available in Azure.
- Gain hands-on experience by setting up containers in Azure for common workflow scenarios.
15 changes: 15 additions & 0 deletions docs/07-containers/02-what-is-a-container.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
sidebar_position: 2
---

# What is a Container?

> "A standard package of software - known as a container - bundles an application’s code together with the related configuration files and libraries, and with the dependencies required for the app to run. This allows developers and IT pros to deploy applications seamlessly across environments." - [Microsoft Azure](https://azure.microsoft.com/en-us/resources/cloud-computing-dictionary/what-is-a-container)
> "Containers are packages of software that contain all of the necessary elements to run in any environment. Containers virtualize the operating system and run anywhere, from a private data center to the public cloud or even on a developer’s personal laptop." - [Google Cloud](https://cloud.google.com/learn/what-are-containers)
> "A container is a standard unit of software that packages up code and all its dependencies so the application runs quickly and reliably from one computing environment to another." - [Docker](https://www.docker.com/resources/what-container/)
## Read more:

- [Microsoft Learn: Container vs VM](https://learn.microsoft.com/en-us/virtualization/windowscontainers/about/containers-vs-vm)
22 changes: 22 additions & 0 deletions docs/07-containers/03-container-options-in-azure.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
sidebar_position: 3
---

# Container options in Azure

For your container needs Azure provides multiple services:

| If you want to | Use this |
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------ |
| Deploy and scale containers on managed Kubernetes | [Azure Kubernetes Service (AKS)](https://azure.microsoft.com/en-us/services/kubernetes-service/) |
| Deploy and scale containers on managed Red Hat OpenShift | [Azure Red Hat OpenShift](https://azure.microsoft.com/en-us/services/openshift/) |
| Build and deploy modern apps and microservices using serverless containers | [Azure Container Apps](https://azure.microsoft.com/en-us/services/container-apps/) |
| Execute event-driven, serverless code with an end-to-end development experience | [Azure Functions](https://azure.microsoft.com/en-us/services/functions/) |
| Run containerized web apps on Windows and Linux | [Web App for Containers](https://azure.microsoft.com/en-us/services/app-service/containers/) |
| Launch containers with hypervisor isolation | [Azure Container Instances](https://azure.microsoft.com/en-us/services/container-instances/) |
| Deploy and operate always-on, scalable, distributed apps | [Azure Service Fabric](https://azure.microsoft.com/en-us/services/service-fabric/) |
| Build, store, secure, and replicate container images and artifacts | [Azure Container Registry](https://azure.microsoft.com/en-us/services/container-registry/) |

## Read more:

- [Azure: Container Services](https://azure.microsoft.com/en-us/products/category/containers)
15 changes: 15 additions & 0 deletions docs/07-containers/04-reading-list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
sidebar_position: 4
---

# Reading list

## Must Have

- [Azure: What is a Container?](https://azure.microsoft.com/en-us/resources/cloud-computing-dictionary/what-is-a-container)
- [Microsoft Learn: Container vs VM](https://learn.microsoft.com/en-us/virtualization/windowscontainers/about/containers-vs-vm)
- [Azure: Container Services](https://azure.microsoft.com/en-us/products/category/containers)

## Nice to have

- [Microsoft Learn Training: Administer containers in Azure](https://learn.microsoft.com/en-us/training/paths/administer-containers-in-azure/)
16 changes: 16 additions & 0 deletions docs/07-containers/05-self-validation-questions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
sidebar_position: 5
---

# Self-validation questions

:::info
Use this questions to repeat the content learned in this module. Try to "remember" the information,
rather than re-reading the content module
:::

- What is a container in the context of software engineering?
- What are the differences and similarities between containers and virtual machines (VMs)?
- What is a container registry?
- What services does Azure provide for your container needs?
- What is the process of deploying a containerized application in Azure using Web App for Containers?
8 changes: 8 additions & 0 deletions docs/07-containers/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"label": "07. Containers",
"position": 7,
"link": {
"type": "generated-index",
"description": "Module Content:"
}
}
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"label": "07. Wrap up",
"position": 7,
"label": "08. Wrap up",
"position": 8,
"link": {
"type": "generated-index",
"description": "Final Module"
Expand Down
Loading

0 comments on commit 78665d1

Please sign in to comment.