From 00e0a26ef5bba597392064d1c481649a744db127 Mon Sep 17 00:00:00 2001 From: "Timothy St. Clair" Date: Thu, 5 Oct 2017 11:04:51 -0500 Subject: [PATCH] Fixes the overlapping mount issue which was the root of not finding plugins. Signed-off-by: Timothy St. Clair --- examples/ksonnet/components/20-pod.jsonnet | 2 +- examples/quickstart.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/ksonnet/components/20-pod.jsonnet b/examples/ksonnet/components/20-pod.jsonnet index e172adae2..a330309c9 100644 --- a/examples/ksonnet/components/20-pod.jsonnet +++ b/examples/ksonnet/components/20-pod.jsonnet @@ -51,7 +51,7 @@ local conf = { }, { name: $.volumes[1].name, - mountPath: "/etc/sonobuoy/plugins.d", + mountPath: "/plugins.d", }, { name: $.volumes[2].name, diff --git a/examples/quickstart.yaml b/examples/quickstart.yaml index 492e756c3..67446e59b 100644 --- a/examples/quickstart.yaml +++ b/examples/quickstart.yaml @@ -268,7 +268,7 @@ spec: volumeMounts: - mountPath: /etc/sonobuoy name: sonobuoy-config-volume - - mountPath: /etc/sonobuoy/plugins.d + - mountPath: /plugins.d name: sonobuoy-plugins-volume - mountPath: /tmp/sonobuoy name: output-volume