kubernetes-apim icon indicating copy to clipboard operation
kubernetes-apim copied to clipboard

README.md of scenario-2 needs to be updated for the latest versions

Open BLasan opened this issue 5 years ago • 0 comments

Some commands in the doc (Scenario-2) seems to be outdated and not fit for the deployment. Two main commands needs to be updated.

  1. helm repo add stable https://kubernetes-charts.storage.googleapis.com gives an error. This has to be replaced with helm repo add stable https://charts.helm.sh/stable

Screenshot from 2020-11-06 10-18-16

  1. helm install nfs-provisioner stable/nfs-server-provisioner creates a storage which is not sufficient for the deployment. This has to be replaced with helm install stable/nfs-server-provisioner --set persistence.enabled=true,persistence.size=21Gi --generate-name. Here we can use a value more than 20GB for the persistence.size parameter as mysql requires more than 20GB.

OS - Ubuntu 20.04.1 LTS Kernel Version - Linux 5.4.0-52-generic Kubectl Version - 1.19 Helm Version - 3.4.0

BLasan avatar Nov 06 '20 05:11 BLasan