Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Hands-On Kubernetes on Windows
Hands-On Kubernetes on Windows

Hands-On Kubernetes on Windows: Effectively orchestrate Windows container workloads using Kubernetes

By Piotr Tylenda
₹2,621.99 ₹800.00
Book Mar 2020 592 pages 1st Edition
eBook
₹2,621.99 ₹800.00
Print
₹3,276.99
Subscription
₹800 Monthly
eBook
₹2,621.99 ₹800.00
Print
₹3,276.99
Subscription
₹800 Monthly

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now

Product Details


Publication date : Mar 31, 2020
Length 592 pages
Edition : 1st Edition
Language : English
ISBN-13 : 9781838821562
Vendor :
Google
Table of content icon View table of contents Preview book icon Preview Book

Hands-On Kubernetes on Windows

Creating Containers

The concepts of containers and OS-level virtualization have their roots in the chroot system call in Unix V7 operating systems (OSes), which date back to the late 1970s. Starting with a simple concept of process isolation and chroot jails, where the process is running in an apparently isolated root directory, containerization has undergone rapid evolution and became a mainstream technology in the 2010s with the advent of Linux Containers (LXC) and Docker. In 2014, Microsoft announced support for Docker Engine in the incoming release of Windows Server 2016. This is where the story of Windows containers and Kubernetes on Windows begins.

In this chapter, we will provide you with a better understanding of containers for the Windows OS by highlighting important differences between containerization on Linux and Windows and container runtime types on Windows, namely...

Technical requirements

The requirements for this chapter are as follows:

  • Intel Virtualization Technology (Intel VT) or AMD Virtualization (AMD-V) technology features enabled in the BIOS
  • A minimum of 4 GB of RAM
  • Windows 10 Pro, Enterprise, or Education (version 1903 or later, 64-bit) installed
  • Visual Studio Code

For more information regarding the hardware requirements for running Docker and containers on Windows, please refer to https://docs.microsoft.com/en-us/virtualization/windowscontainers/deploy-containers/system-requirements.

Windows 10 versions starting with Anniversary Update (version 1607, build 14393) are supported, but version 1903 is recommended for the best experience since it comes with all the necessary features. For more details regarding Windows 10 versions and container runtimes compatibility, please refer to https://docs.microsoft.com/en-us/virtualization/windowscontainers...

Linux versus Windows containers

Containerization on both Linux and Windows aims to achieve the same goal creating predictable and lightweight environments that are isolated from other applications. For Linux, a classic example of container usage can be running a Python RESTful API written in Flask, without worrying about conflicts between Python modules that are required by other applications. Similarly, for Windows, the containers can be used to host an Internet Information Services (IIS) web server that's entirely isolated from other workloads running on the same machine.

Compared to traditional hardware virtualization, containerization comes at the cost of being tightly coupled with the host OS since it uses the same kernel to provide multiple isolated user spaces. This means that running Windows containers on the Linux OS or running Linux containers on the Windows...

Understanding Windows container variants

Windows containers come in two distinct levels of isolation: process and Hyper-V. Process isolation is also known as Windows Server Containers (WSC). Initially, process isolation was available on the Windows Server OS only, whereas on desktop versions of the Windows OS, you could run containers using Hyper-V isolation. Starting with Windows 10, version 1809 (October 2018 Update) and Docker Engine 18.09.1, process isolation is also available on Windows 10.

In the official documentation, you may find the terms Windows container types and runtimes. They also refer to the isolation levels, and these terms are used interchangeably.

Now, let's take a look at how these isolation levels differ, what the use cases for them are, and how to create containers by specifying the desired isolation type.

...

Installing Docker Desktop for Windows tooling

Creating applications for Kubernetes on Windows requires an environment for developing and testing Docker containers. In this section, you will learn how to install Docker Desktop for Windows, which is the recommended tooling environment for development, building, shipping, and running Linux and Windows containers on Windows 10. First, let's recap on the prerequisites and Docker's minimum requirements before continuing with the installation process:

  • A minimum of 4 GB of RAM.
  • The Intel Virtualization Technology (Intel VT) or AMD Virtualization (AMD-V) technology features enabled in the BIOS. Note that if you are using a VM as your development machine, Docker Desktop for Windows does not guarantee support for nested virtualization. If you want to find out more about this scenario, please refer to https://docs.docker.com/docker...

Building your first container

In the previous section, you have learned how to install Docker Desktop for Windows and how to run simple Windows and Linux containers. This section will demonstrate how to build a custom Docker image using Dockerfile and how to perform the most common actions on running containers, such as accessing logs and perform exec into a container.

A Dockerfile is a text file that contains all the commands that the user would execute in order to assemble a container image. As this book does not focus on Docker only, this section will be a short recap of common Docker operations. If you are interested in Dockerfiles themselves and building containers, please refer to the official documentation at: https://docs.docker.com/engine/reference/builder/.

As an example, we will prepare a Dockerfile that creates a Windows container image of Microsoft IIS hosting a demonstration...

Summary

In this chapter, you learned about the key aspects of the Windows containers architecture and the differences between the isolation modes provided by the Windows container runtime. We also covered how to install Docker Desktop for Windows and demonstrated how to perform the most important operations using the Docker CLI on the Windows platform.

This and the next two chapters will be the foundations of what you are going to learn about regarding Kubernetes on Windows in the rest of this book. In the next chapter, we will focus on managing state in Windows containers, that is, how to persist data when running containers.

Questions

  1. What are the kernel features that Windows exposes in order to enable containerization?
  2. What are the key differences between containerization on Linux and on Windows?
  3. What is the difference between Hyper-V isolation and process isolation? When should you use Hyper-V isolation?
  4. How can we enable LCOW on Windows 10?
  5. What command can we use to access logs for the main process in a Docker container?
  6. How can we start a new Powershell process inside a running container?

You can find the answers to these questions in the Assessments section of this book.

Further reading

This chapter has provided a recap of Docker containers on Windows. For more information concerning Windows containers, please refer to two excellent Packt books:

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Run, deploy, and orchestrate containers on the Windows platform with this Kubernetes book
  • Use Microsoft SQL Server 2019 as a data store to deploy Kubernetes applications written in .NET Framework
  • Set up a Kubernetes development environment and deploy clusters with Windows Server 2019 nodes

Description

With the adoption of Windows containers in Kubernetes, you can now fully leverage the flexibility and robustness of the Kubernetes container orchestration system in the Windows ecosystem. This support will enable you to create new Windows applications and migrate existing ones to the cloud-native stack with the same ease as for Linux-oriented cloud applications. This practical guide takes you through the key concepts involved in packaging Windows-distributed applications into containers and orchestrating these using Kubernetes. You'll also understand the current limitations of Windows support in Kubernetes. As you advance, you'll gain hands-on experience deploying a fully functional hybrid Linux/Windows Kubernetes cluster for development, and explore production scenarios in on-premises and cloud environments, such as Microsoft Azure Kubernetes Service. By the end of this book, you'll be well-versed with containerization, microservices architecture, and the critical considerations for running Kubernetes in production environments successfully.

What you will learn

Understand containerization as a packaging format for applications Create a development environment for Kubernetes on Windows Grasp the key architectural concepts in Kubernetes Discover the current limitations of Kubernetes on the Windows platform Provision and interact with a Kubernetes cluster from a Windows machine Create hybrid Windows Kubernetes clusters in on-premises and cloud environments

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now

Product Details


Publication date : Mar 31, 2020
Length 592 pages
Edition : 1st Edition
Language : English
ISBN-13 : 9781838821562
Vendor :
Google

Table of Contents

23 Chapters
Preface Chevron down icon Chevron up icon
Section 1: Creating and Working with Containers Chevron down icon Chevron up icon
Creating Containers Chevron down icon Chevron up icon
Managing State in Containers Chevron down icon Chevron up icon
Working with Container Images Chevron down icon Chevron up icon
Section 2: Understanding Kubernetes Fundamentals Chevron down icon Chevron up icon
Kubernetes Concepts and Windows Support Chevron down icon Chevron up icon
Kubernetes Networking Chevron down icon Chevron up icon
Interacting with Kubernetes Clusters Chevron down icon Chevron up icon
Section 3: Creating Windows Kubernetes Clusters Chevron down icon Chevron up icon
Deploying a Hybrid On-Premises Kubernetes Cluster Chevron down icon Chevron up icon
Deploying a Hybrid Azure Kubernetes Service Engine Cluster Chevron down icon Chevron up icon
Section 4: Orchestrating Windows Containers Using Kubernetes Chevron down icon Chevron up icon
Deploying Your First Application Chevron down icon Chevron up icon
Deploying Microsoft SQL Server 2019 and a ASP.NET MVC Application Chevron down icon Chevron up icon
Configuring Applications to Use Kubernetes Features Chevron down icon Chevron up icon
Development Workflow with Kubernetes Chevron down icon Chevron up icon
Securing Kubernetes Clusters and Applications Chevron down icon Chevron up icon
Monitoring Kubernetes Applications Using Prometheus Chevron down icon Chevron up icon
Disaster Recovery Chevron down icon Chevron up icon
Production Considerations for Running Kubernetes Chevron down icon Chevron up icon
Assessments Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Filter icon Filter
Top Reviews
Rating distribution
Empty star icon Empty star icon Empty star icon Empty star icon Empty star icon 0
(0 Ratings)
5 star 0%
4 star 0%
3 star 0%
2 star 0%
1 star 0%

Filter reviews by


No reviews found
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.