From 00cb243ee314e2506c17187e3ce9c1d47101f181 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Sat, 28 Feb 2026 00:16:16 +0000 Subject: [PATCH] modified: README.md --- README.md | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 99ff070..4e39f59 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,8 @@ metadata: name: ubuntu-test namespace: tests spec: + #### deploy to an specific node + nodeName: chimera-gluten containers: - name: ubuntu-test image: ubuntu @@ -90,6 +92,15 @@ spec: command: ["sh"] # PID 1 = interactive shell stdin: true # keep STDIN open tty: true # allocate a terminal + + volumeMounts: + - name: data + mountPath: /data + + volumes: + - name: data + persistentVolumeClaim: + claimName: data-pvc ``` **Create an ubuntu pod with and execute command:** @@ -112,9 +123,11 @@ spec: command: ["bash", "-c"] args: - "ls -lah /data" - volumeMounts: - - name: data - mountPath: /data + + volumeMounts: + - name: data + mountPath: /data + volumes: - name: data persistentVolumeClaim: