Errata

Kubernetes Best Practices

Errata for Kubernetes Best Practices

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Other Digital Version 81-83
Last paragraph on 81 and all on other pages

Drone cloud service doesn't accept sign-ups any longer. So, all the contents about hands-on need to be updated, which ranges from 81 to 83 pages.

Brian Lee  Dec 30, 2023 
Other Digital Version 94
first paragraph

As of k8s v1.23, TTL Controller now out of alpha. So the following sentence needs to be updated.

It also ensures that the Job is deleted after the job is run successfully, which, until the TTL Controller comes out of alpha in Kubernetes, would require manual cleanup.

Brian Lee  Dec 30, 2023 
ePub Page 585
3rd paragraph

To be more clear on using PersistentVolume to deploy Redis I think you must include a new file to get that PersistentVolume on the claim. For that I use this manifest file:

apiVersion: v1
kind: PersistentVolume
metadata:
name: pv0001
spec:
capacity:
storage: 15G
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Recycle
storageClassName: standard
hostPath:
path: /home/docker/
type: Directory

Afther apply it, PersistentVolumeClaim is autoasigned by K8s.

In the same way you need to include storageClassName in the Redis volume claim.

Hello and congratulations for your book.

Regards

Francisco Jose Gonzalez Lozano  Nov 03, 2023