From 84da639052796dc094f35fb0bd1557d77c723155 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Wed, 6 May 2020 18:41:27 +0200 Subject: [PATCH] Fix --- content/fr/examples/application/shell-demo.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 content/fr/examples/application/shell-demo.yaml diff --git a/content/fr/examples/application/shell-demo.yaml b/content/fr/examples/application/shell-demo.yaml new file mode 100644 index 0000000000..9eb140d80f --- /dev/null +++ b/content/fr/examples/application/shell-demo.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: Pod +metadata: + name: shell-demo +spec: + volumes: + - name: shared-data + emptyDir: {} + containers: + - name: nginx + image: nginx + volumeMounts: + - name: shared-data + mountPath: /usr/share/nginx/html + hostNetwork: true + dnsPolicy: Default