PacktPublishing / Hands-On-Kubernetes-on-Azure---Second-Edition

Hands-On Kubernetes on Azure - Second Edition
MIT License
22 stars 56 forks source link

Deprecated Helm Chart Referenced #2

Open AErmie opened 4 years ago

AErmie commented 4 years ago

In Chapter 3, within the "Installing complex Kubernetes applications using Helm" section (in particular, page 75), you instruct us to run the following 2 commands:

helm repo add stable https://kubernetes-charts.storage.googleapis.com/
helm install handsonakswp stable/wordpress

While the first command completes without issue, the second one returns a warning message as follows:

WARNING: This chart is deprecated Error: Kubernetes cluster unreachable: Get https://aksworksho-aksworkshop-ee2d54-2227f1c8.hcp.eastus.azmk8s.io:443/version?timeout=32s: dial tcp: lookup aksworksho-aksworkshop-ee2d54-2227f1c8.hcp.eastus.azmk8s.io on 168.63.129.16:53: no such host

Even though I am able to search the repo/hub for alternative Wordpress Helm charts (using helm search repo wordpress) and there are alternatives listed (from the hub specifically), it is not clear how to use one of these as an alternative deployment.

terribletim commented 3 years ago

run helm search repo stable and you will see that WordPress is deprecated.

Instead:

helm repo add bitnami https://charts.bitnami.com/bitnami
helm install handsonakswp bitnami/wordpress