Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Kubernetes – An Enterprise Guide
Kubernetes – An Enterprise Guide

Kubernetes – An Enterprise Guide: Master containerized application deployments, integrate enterprise systems, and achieve scalability , Third Edition

Arrow left icon
Profile Icon Marc Boorshtein Profile Icon Scott Surovich
Arrow right icon
€41.99
Full star icon Full star icon Full star icon Full star icon Full star icon 5 (11 Ratings)
Paperback Aug 2024 682 pages 3rd Edition
eBook
€22.99 €32.99
Paperback
€41.99
Subscription
Free Trial
Renews at €18.99p/m
Arrow left icon
Profile Icon Marc Boorshtein Profile Icon Scott Surovich
Arrow right icon
€41.99
Full star icon Full star icon Full star icon Full star icon Full star icon 5 (11 Ratings)
Paperback Aug 2024 682 pages 3rd Edition
eBook
€22.99 €32.99
Paperback
€41.99
Subscription
Free Trial
Renews at €18.99p/m
eBook
€22.99 €32.99
Paperback
€41.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
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
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Shipping Address

Billing Address

Shipping Methods
Table of content icon View table of contents Preview book icon Preview Book

Kubernetes – An Enterprise Guide

Questions

  1. A single Docker image can be used on any Docker host, regardless of the architecture used.
    1. True
    2. False

Answer: B (We added the topic of cross-platform images)

  1. What does Docker use to merge multiple image layers into a single filesystem?
    1. Merged filesystem
    2. NTFS filesystem
    3. EXT4 filesystem
    4. Union filesystem

Answer: D

  1. Kubernetes is only compatible with the Docker runtime engine.
    1. True
    2. False

Answer: B

  1. When you edit a container's filesystem interactively, what layer are the changes written to?
    1. Operating system layer
    2. Bottom-most layer
    3. Container layer
    4. Ephemeral layer

Answer: C

  1. Assuming the image contains the required binaries, what Docker command allows you to gain access to a container's bash prompt?
    1. docker shell -it <container> /bin/bash
    2. docker run -it <container> /bin/bash
    3. docker exec -it <container> /bin/bash
    4. docker spawn -it <container> /bin/bash

Answer: B

  1. When a container is stopped, the Docker daemon will delete all traces of...

Technical requirements

This chapter has the following technical requirements:

We consider it essential to highlight that this chapter will mention various Kubernetes objects, some of which may lack extensive context. However, in Chapter 3, Kubernetes Bootcamp, we will dive into Kubernetes objects in depth, providing numerous example commands to enhance your understanding. To ensure a practical learning experience, we recommend having a cluster while reading the bootcamp chapter.

Most of the basic Kubernetes topics covered in this chapter will be discussed in future chapters, so if some topics become a bit foggy after you’ve read this chapter, never...

Introducing Kubernetes components and objects

Since this chapter will discuss various common Kubernetes objects and components, we’ve included a table with brief definitions for each term. This will provide you with the necessary context and help ensure you understand the terminology as you read through the chapter.

In Chapter 3, Kubernetes Bootcamp, we will go over the components of Kubernetes and the basic set of objects that are included in a cluster. Since we will have to use some basic objects in this module, we have provided some common Kubernetes components and resources in the table below.

Table 4.1 – Kubernetes components and objects

Figure 2.1: Kubernetes components and objects

While these are only a few of the objects that are available in a Kubernetes cluster, they are the objects we will discuss in this chapter. Knowing what each resource is and having basic knowledge of its functionality will help you to understand this chapter.

Interacting with a cluster

To interact with a cluster...

Using development clusters

Over time, several solutions have been developed to facilitate the installation of development Kubernetes clusters, enabling administrators and developers to conduct testing on local systems. While these tools have proven effective for basic Kubernetes testing, they often possess certain limitations that render them suboptimal for more advanced scenarios.

Some of the most common solutions available are as follows:

  • Docker Desktop
  • K3s
  • KinD
  • kubeadm
  • minikube
  • Rancher Desktop

Each solution has benefits, limitations, and use cases. Some solutions limit you to a single node that runs both the control plane and worker nodes. Others offer multi-node support but require additional resources to create multiple virtual machines. Depending on your development or testing requirements, these solutions may not meet your needs completely.

To truly get into Kubernetes, you need to have a cluster that has at least a...

Installing KinD

At the time of writing, the current version of KinD is 0.22.0, supporting Kubernetes clusters up to 1.30.x.

The files required to deploy KinD and all of the components for the cluster that we will use for the chapters are located in the repository, under the chapter2 folder. The script, create-cluster.sh, located in the root of the chapter2 directory, will execute all of the steps discussed in the remainder of the chapter. You do not need to execute the commands as you read the chapter; you are welcome to follow the steps, but before executing the install script in the repo, you must delete any KinD clusters that may have been deployed.

The deployment script contains in-line remarks to explain each step; however, we will explain each step of the installation process in the next section.

Installing KinD – prerequisites

There are multiple methods available for installing KinD, but the simplest and fastest approach to begin building KinD clusters...

Creating a KinD cluster

The KinD utility offers the flexibility to create both single-node clusters and more intricate setups with multiple control plane nodes and worker nodes. In this section, we will dive into the various options provided by the KinD executable. By the conclusion of this chapter, you will have a fully operational two-node cluster comprising a control plane node and a worker node.

Note

Kubernetes cluster concepts, including the control plane and worker nodes will be covered in detail in the next chapter, Chapter 3: Kubernetes Bootcamp.

For the exercises covered in this book, we will be setting up a multi-node cluster. The simple cluster configuration provided in the next section serves as an introductory example and should not be employed for the exercises presented in the book.

Creating a simple cluster

We will create a cluster later in the chapter, but before we do that, let’s explain how we can use KinD to create different...

Reviewing your KinD cluster

Now that you have a fully functional Kubernetes cluster, we can dive into the realm of a few key Kubernetes objects, specifically storage objects. In the next chapter, Kubernetes Bootcamp, we will get deeper into the other objects that are available in a Kubernetes cluster. While that chapter will explore the large list of objects available in a cluster, it is important to introduce the storage-related objects at this point, since KinD provides storage capabilities.

In this section, we shall acquaint ourselves with the storage objects seamlessly integrated within KinD. These purpose-built storage objects extend persistent storage capabilities to your workloads within the cluster, ensuring data persistence and resilience. By familiarizing ourselves with these storage objects, we lay the foundation for seamless data management within the Kubernetes ecosystem.

KinD storage objects

Remember that KinD includes Rancher’s auto-provisioner to...

Adding a custom load balancer for Ingress

We added this section for anybody who may want to know more about how to load balance between multiple worker nodes.

This section disccusses a complex topic that covers adding a custom HAProxy container that you can use to load balance worker nodes in a KinD cluster. You should not deploy this on the KinD cluster that we will use for the remaining chapters.

Since you will interact with load balancers in most enterprise environments, we wanted to add a section on how to configure your own HAProxy container for worker nodes, in order to load balance between three KinD nodes.

First, we will not use this configuration for any of the chapters in this book. We want to make the exercises available to everyone, so to limit the required resources, we will always use the two-node cluster that we created earlier in this chapter. If you want to test KinD nodes with a load balancer, we suggest using a different Docker host or waiting until...

Summary

This chapter provided an overview of the KinD project, a Kubernetes SIG project. We covered the process of installing optional components in a KinD cluster, such as Calico for CNI and NGINX for Ingress control. Additionally, we explored the Kubernetes storage objects that are included with a KinD cluster.

You should now understand the potential benefits that KinD can bring to you and your organization. It offers a user-friendly and highly customizable Kubernetes cluster deployment, and the number of clusters on a single host is only limited by the available host resources.

In the next chapter, we will dive into Kubernetes objects. We’ve called the next chapter Kubernetes Bootcamp, since it will cover the majority of the basic Kubernetes objects and what each one is used for. The next chapter can be considered a “Kubernetes pocket guide.” It contains a quick reference to Kubernetes objects and what they do, as well as when to use them.

It’...

Questions

  1. What object must be created before you can create a PersistentVolumeClaim?
    1. PVC
    2. A disk
    3. PersistentVolume
    4. VirtualDisk

Answer: c

  1. KinD includes a dynamic disk provisioner. Which company created the provisioner?
    1. Microsoft
    2. CNCF
    3. VMware
    4. Rancher

Answer: d

  1. If you created a KinD cluster with multiple worker nodes, what would you install to direct traffic to each node?
    1. A load balancer
    2. A proxy server
    3. Nothing
    4. Replicas set to 3

Answer: a

  1. True or false? A Kubernetes cluster can only have one CSIdriver installed.
    1. True
    2. False

Answer: b

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Focuses on what you need to run Kubernetes in an Enterprise environment, based on real-world experience
  • Learn how to secure clusters by adding runtime security and enhancing secrets management using direct pod mounting and Vault integration
  • Get a firm command of Kubernetes from a dual perspective of an admin as well as a developer

Description

Stay at the forefront of cloud-native technologies with the eagerly awaited Kubernetes – An Enterprise Guide, Third Edition. Delve deep into Kubernetes and emerge with the latest insights to conquer today's dynamic enterprise challenges. This meticulously crafted edition equips you with the latest insights to skillfully navigate the twists and turns of ever-evolving cloud technology. Experience a more profound exploration of advanced Kubernetes deployments, revolutionary techniques, and expert strategies that redefine your cloud-native skill set. Discover cutting-edge topics reshaping the technological frontier like virtual clusters, container security, and secrets management. Gain an edge by mastering these critical aspects of Kubernetes and propelling your enterprise to new heights. Expertly harness Kubernetes' power for business-critical applications with insider techniques. Smoothly transition to microservices with Istio, excel at modern deployments with GitOps/CI/CD, and bolster security with OPA/Gatekeeper and KubeArmor. Integrate Kubernetes with leading tools for maximum impact in a competitive landscape. Stay ahead of the technology curve with cutting-edge strategies for innovation and growth. Redefine cloud-native excellence with this definitive guide to leveraging Kubernetes.

Who is this book for?

Tech enthusiasts, DevOps aficionados, and those keen on mastering containerization will revel in the insights offered by this book. Designed for DevOps engineers, developers, and system administrators seeking to amplify their IT journey, this guide is your gateway to next-level Kubernetes expertise. While some familiarity with Docker and Kubernetes is advantageous, fear not if you're new to these concepts. A Kubernetes bootcamp is thoughtfully included, ensuring a seamless learning experience for beginners and those in need of a refresher.

What you will learn

  • Manage Secrets with Vault and External Secret Operator
  • Create multitenant clusters with vCluster for isolated environments
  • Monitor clusters with Prometheus and visualize metrics using Grafana
  • Aggregate and analyze logs centrally with OpenSearch for insights
  • Build a developer platform integrating GitLab and ArgoCD for CI/CD
  • Deploy applications in Istio service mesh and secure them with OPA and GateKeeper
  • Secure your container runtime and halt hackers in their tracks with KubeArmor
Estimated delivery fee Deliver to Sweden

Premium delivery 7 - 10 business days

€17.95
(Includes tracking information)

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Aug 30, 2024
Length: 682 pages
Edition : 3rd
Language : English
ISBN-13 : 9781835086957
Languages :
Tools :

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
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
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Shipping Address

Billing Address

Shipping Methods
Estimated delivery fee Deliver to Sweden

Premium delivery 7 - 10 business days

€17.95
(Includes tracking information)

Product Details

Publication date : Aug 30, 2024
Length: 682 pages
Edition : 3rd
Language : English
ISBN-13 : 9781835086957
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 113.97
Mastering Git
€37.99
Implementing GitOps with Kubernetes
€33.99
Kubernetes – An Enterprise Guide
€41.99
Total 113.97 Stars icon

Table of Contents

21 Chapters
Docker and Container Essentials Chevron down icon Chevron up icon
Deploying Kubernetes Using KinD Chevron down icon Chevron up icon
Kubernetes Bootcamp Chevron down icon Chevron up icon
Services, Load Balancing, and Network Policies Chevron down icon Chevron up icon
External DNS and Global Load Balancing Chevron down icon Chevron up icon
Integrating Authentication into Your Cluster Chevron down icon Chevron up icon
RBAC Policies and Auditing Chevron down icon Chevron up icon
Managing Secrets Chevron down icon Chevron up icon
Building Multitenant Clusters with vClusters Chevron down icon Chevron up icon
Deploying a Secured Kubernetes Dashboard Chevron down icon Chevron up icon
Extending Security Using Open Policy Agent Chevron down icon Chevron up icon
Node Security with Gatekeeper Chevron down icon Chevron up icon
KubeArmor Securing Your Runtime Chevron down icon Chevron up icon
Backing Up Workloads Chevron down icon Chevron up icon
Monitoring Clusters and Workloads Chevron down icon Chevron up icon
An Introduction to Istio Chevron down icon Chevron up icon
Building and Deploying Applications on Istio Chevron down icon Chevron up icon
Provisioning a Multitenant Platform Chevron down icon Chevron up icon
Building a Developer Portal Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

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

Filter reviews by




DK Sep 01, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The book offers a deep and thoughtful exploration of managing Kubernetes in an enterprise environment. The book covers a broad range of topics essential for effectively deploying and scaling Kubernetes in complex organizational settings. The authors provide a wealth of practical advice, drawing on their extensive experience in the field.While the book excels in many areas, such as its detailed discussions on integrating Kubernetes with enterprise systems and managing multi-tenant clusters, it does feel like it’s missing a few critical points, particularly in areas like advanced security practices or some emerging Kubernetes tools. That said, the depth and clarity of the content make it a valuable resource for anyone looking to extend their Kubernetes knowledge beyond the basics.Overall, it’s a solid guide that will be especially useful for DevOps teams working in enterprise environments. Just be prepared to supplement it with additional resources for the most cutting-edge practices.
Amazon Verified review Amazon
Boom Shakalaka Sep 09, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
As a reader with a few years of hands-on experience deploying at scale and managing both Amazon EKS and Google Kubernetes Engine (GKE), "Kubernetes - An Enterprise Guide" by Marc Boorshetein and Scott Surovich is an excellent guide for those just learning about Kubernetes as well as seasoned professionals. The end of each chapter includes a summary and questions that can be used for study. They also include a link to their Discord community if you would have questions.The authors start by covering container fundamentals and Docker concepts. Docker is one of the most widely used tooling for developing with containers. It is geared towards individuals who have prior experience with containers. I found this information useful as someone with years of experience. This leads into working with Kubernetes locally by deploying a cluster with KinD (Kubernetes in Docker). This is a great way to learn the basics of Kubernetes without having to spend money on cloud resources or procuring hardware. Chapter 2 covers common components of Kubernetes as well as how to interact with a cluster using kubectl. Example screenshots and configurations are provided which should be helpful for those new to the tooling and concepts when learning KinD.There is a wealth of information in regards to Kubernetes concepts; therefore, it would be quite difficult to learn by simply reading a textbook. The information is similar to what you might find in the documentation online, but with more in depth analysis and focused sections. A beginner would likely need to revisit sections based on what that person's role is in terms of interacting with Kubernetes. Overall this book includes some great information for an individual migrating their organization to Kubernetes.I was able to learn some new things even as an experienced user, for example, the chapter about the K8GB I found particularly enlightening. I knew the basics going in, but have not been working with Kubernetes lately so it was a good refresher to see them again. There were also some insightful explanations I can use moving forward. I definitely recommend reading for anyone with some experience with containers and is ready to level up and start using Kubernetes at scale.There are many solutions to choose from when it comes to cluster components. The authors have chosen some of the most popular solutions to cover in depth so this information is immediately useful for users looking to implement Kubernetes at an Enterprise level.
Amazon Verified review Amazon
Eugene C. Olsen Sep 23, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
From the authors, “We created this book to help DevOps teams to expand their skills beyond the basics of Kubernetes.” Also, “Readers should have some experience with Kubernetes and DevOps before reading this book.” The book is intermediate to advanced in level and is very hands-on. This said, Chapter 3 provides an excellent Kubernetes bootcamp. I would recommend, however, that before diving into Chapter 3, the beginner should invest some time getting an overview of Kubernetes, including some common use cases.To follow the book with the hands-on instructions that fill most of the chapters (more practice than theory), Ubuntu Linux 22.04 or higher is required. This could be running on a high-end Raspberry Pi or anything more powerful. The book is not meant to be a page-turner. If the reader has their Ubuntu machine nearby they will get some great experience deploying Kubernetes and related tools. It will take time. Kubernetes has lots of moving parts.Seven of the 19 chapters are dedicated to security with security concerns also peppered throughout most of the rest of the chapters. Chapter 15 needs more computing power (maybe an Orange Pi Max with 16GB RAM) and Chapter 19 requires considerably more computing power.Targeted at DevOps, the book might appeal to a wider audience wishing for a deep, hands-on dive into Kubernetes.
Amazon Verified review Amazon
Kevin J. Sep 30, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I received the digital pre released book and I am very impressed. Well written and covers a breadth of topics relating to Kubernetes. My current work as a DevOps engineer utilizes ECS Fargate for container orchestration so I am spending my own time to receive additional experience with Kubernetes. This book is an excellent resource for this purpose and I highly recommend it.
Amazon Verified review Amazon
Jim Snodgrass Sep 04, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I read this book during a few days of unexpected downtime, and just in time for a much-needed re-orientation & update on these concepts. The authors offer an easy-to-follow guide that seamlessly bridges the gap between beginner and advanced concepts, making the content accessible to both novices and seasoned DevOps professionals.Each chapter builds on the previous one in a way that feels intuitive. I appreciate how the flow of content builds a deep understanding as the chapters progress, allowing readers to naturally grasp increasingly complex topics. The avoidance of industry jargon wherever possible makes the material more approachable, ensuring that the concepts are clear and digestible. The book’s focus on practical, real-world applications is particularly valuable for those looking to implement Kubernetes in enterprise environments.It effectively addresses the challenges companies face in managing Kubernetes clusters, providing actionable insights and some useful best practices. The coverage of topics like security, multitenancy, and monitoring is thorough, offering readers the insight needed to handle enterprise-level Kubernetes deployments. Overall, the book is structured, well-written, and a highly recommended resource for anyone looking to deepen their understanding of Kubernetes beyond the basics.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is the delivery time and cost of print book? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela
What is custom duty/charge? Chevron down icon Chevron up icon

Customs duty are charges levied on goods when they cross international borders. It is a tax that is imposed on imported goods. These duties are charged by special authorities and bodies created by local governments and are meant to protect local industries, economies, and businesses.

Do I have to pay customs charges for the print book order? Chevron down icon Chevron up icon

The orders shipped to the countries that are listed under EU27 will not bear custom charges. They are paid by Packt as part of the order.

List of EU27 countries: www.gov.uk/eu-eea:

A custom duty or localized taxes may be applicable on the shipment and would be charged by the recipient country outside of the EU27 which should be paid by the customer and these duties are not included in the shipping charges been charged on the order.

How do I know my custom duty charges? Chevron down icon Chevron up icon

The amount of duty payable varies greatly depending on the imported goods, the country of origin and several other factors like the total invoice amount or dimensions like weight, and other such criteria applicable in your country.

For example:

  • If you live in Mexico, and the declared value of your ordered items is over $ 50, for you to receive a package, you will have to pay additional import tax of 19% which will be $ 9.50 to the courier service.
  • Whereas if you live in Turkey, and the declared value of your ordered items is over € 22, for you to receive a package, you will have to pay additional import tax of 18% which will be € 3.96 to the courier service.
How can I cancel my order? Chevron down icon Chevron up icon

Cancellation Policy for Published Printed Books:

You can cancel any order within 1 hour of placing the order. Simply contact customercare@packt.com with your order details or payment transaction id. If your order has already started the shipment process, we will do our best to stop it. However, if it is already on the way to you then when you receive it, you can contact us at customercare@packt.com using the returns and refund process.

Please understand that Packt Publishing cannot provide refunds or cancel any order except for the cases described in our Return Policy (i.e. Packt Publishing agrees to replace your printed book because it arrives damaged or material defect in book), Packt Publishing will not accept returns.

What is your returns and refunds policy? Chevron down icon Chevron up icon

Return Policy:

We want you to be happy with your purchase from Packtpub.com. We will not hassle you with returning print books to us. If the print book you receive from us is incorrect, damaged, doesn't work or is unacceptably late, please contact Customer Relations Team on customercare@packt.com with the order number and issue details as explained below:

  1. If you ordered (eBook, Video or Print Book) incorrectly or accidentally, please contact Customer Relations Team on customercare@packt.com within one hour of placing the order and we will replace/refund you the item cost.
  2. Sadly, if your eBook or Video file is faulty or a fault occurs during the eBook or Video being made available to you, i.e. during download then you should contact Customer Relations Team within 14 days of purchase on customercare@packt.com who will be able to resolve this issue for you.
  3. You will have a choice of replacement or refund of the problem items.(damaged, defective or incorrect)
  4. Once Customer Care Team confirms that you will be refunded, you should receive the refund within 10 to 12 working days.
  5. If you are only requesting a refund of one book from a multiple order, then we will refund you the appropriate single item.
  6. Where the items were shipped under a free shipping offer, there will be no shipping costs to refund.

On the off chance your printed book arrives damaged, with book material defect, contact our Customer Relation Team on customercare@packt.com within 14 days of receipt of the book with appropriate evidence of damage and we will work with you to secure a replacement copy, if necessary. Please note that each printed book you order from us is individually made by Packt's professional book-printing partner which is on a print-on-demand basis.

What tax is charged? Chevron down icon Chevron up icon

Currently, no tax is charged on the purchase of any print book (subject to change based on the laws and regulations). A localized VAT fee is charged only to our European and UK customers on eBooks, Video and subscriptions that they buy. GST is charged to Indian customers for eBooks and video purchases.

What payment methods can I use? Chevron down icon Chevron up icon

You can pay with the following card types:

  1. Visa Debit
  2. Visa Credit
  3. MasterCard
  4. PayPal
What is the delivery time and cost of print books? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela