From a07186fc2def875adb04bf72b98d4c9dd4db5460 Mon Sep 17 00:00:00 2001 From: Beto Date: Mon, 14 Jan 2019 15:47:03 -0700 Subject: [PATCH] [stable/nfs-client-provisioner] Minor clarification for arm deployments on README (#10598) * Minor clarification for arm deployments on README I tried to use this chart on an arm based cluster the pod crashed right after it was started. That's because the default image is for amd64 and the README does not explicitly states the image to use for arm. Signed-off-by: Beto * minor version bump Signed-off-by: Beto --- stable/nfs-client-provisioner/Chart.yaml | 2 +- stable/nfs-client-provisioner/README.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/stable/nfs-client-provisioner/Chart.yaml b/stable/nfs-client-provisioner/Chart.yaml index ba0d9997ec..6598271daf 100644 --- a/stable/nfs-client-provisioner/Chart.yaml +++ b/stable/nfs-client-provisioner/Chart.yaml @@ -3,7 +3,7 @@ appVersion: 3.1.0 description: nfs-client is an automatic provisioner that used your *already configured* NFS server, automatically creating Persistent Volumes. name: nfs-client-provisioner home: https://github.com/kubernetes-incubator/external-storage/tree/master/nfs-client -version: 1.2.1 +version: 1.2.2 sources: - https://github.com/kubernetes-incubator/external-storage/tree/master/nfs-client maintainers: diff --git a/stable/nfs-client-provisioner/README.md b/stable/nfs-client-provisioner/README.md index 96348514aa..a7f86ef648 100644 --- a/stable/nfs-client-provisioner/README.md +++ b/stable/nfs-client-provisioner/README.md @@ -8,6 +8,8 @@ The [NFS client provisioner](https://github.com/kubernetes-incubator/external-st $ helm install --set nfs.server=x.x.x.x --set nfs.path=/exported/path stable/nfs-client-provisioner ``` +For **arm** deployments set `image.repository` to `--set image.repository=quay.io/external_storage/nfs-client-provisioner-arm` + ## Introduction This charts installs custom [storage class](https://kubernetes.io/docs/concepts/storage/storage-classes/) into a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager. It also installs a [NFS client provisioner](https://github.com/kubernetes-incubator/external-storage/tree/master/nfs-client) into the cluster which dynamically creates persistent volumes from single NFS share.