From 4da06c6bd3b4a06b2bd047f81753b4e4bba86a6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Fri, 27 Feb 2026 15:09:03 +0000 Subject: [PATCH] modified: README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 727c248..99ff070 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ spec: tty: true # allocate a terminal ``` -**Create an ubuntu pod for tty access example:** +**Create an ubuntu pod with and execute command:** ``` bash apiVersion: v1 @@ -112,6 +112,13 @@ spec: command: ["bash", "-c"] args: - "ls -lah /data" + volumeMounts: + - name: data + mountPath: /data + volumes: + - name: data + persistentVolumeClaim: + claimName: data-pvc ``` ### Get Pod