From 50c016d7bcb51b561e21e7a2b05791de0bd8716d Mon Sep 17 00:00:00 2001 From: Sabbir Ahmed Shameem <145862004+SAShameem@users.noreply.github.com> Date: Tue, 7 May 2024 22:58:57 +0600 Subject: [PATCH] Create shell-demo.yaml --- content/bn/examples/application/shell-demo.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 content/bn/examples/application/shell-demo.yaml diff --git a/content/bn/examples/application/shell-demo.yaml b/content/bn/examples/application/shell-demo.yaml new file mode 100644 index 0000000000..9eb140d80f --- /dev/null +++ b/content/bn/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