From 1a24894c237e6063be1e49f9382241365a854557 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Wed, 8 Aug 2018 14:27:53 +0100 Subject: [PATCH] Fix the CRI volumeMount name in the example manifest volumeMounts need to refer to an existing volume name to be successfully mounted. cri-socket is the defined volume name. --- examples/cri/ds.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cri/ds.yaml b/examples/cri/ds.yaml index d9a5a815b..b65fb00d0 100644 --- a/examples/cri/ds.yaml +++ b/examples/cri/ds.yaml @@ -39,7 +39,7 @@ spec: securityContext: privileged: true volumeMounts: - - name: crio-socket + - name: cri-socket mountPath: /var/run/crio/crio.sock - name: scope-plugins mountPath: /var/run/scope/plugins