-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from w-p-c/add-container-chapter
Add chapter 7 (containers)
- Loading branch information
Showing
9 changed files
with
89 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
4 changes: 2 additions & 2 deletions
4
docs/07-wrap-up/_category_.json → docs/08-wrap-up/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.