apiVersion: v1 kind: PersistentVolumeClaim metadata: name: a1-tf-notebook-pvc namespace: org2 spec: accessModes: - ReadWriteOnce resources: requests: storage: 10Gi storageClassName: nfs-client --- apiVersion: apps/v1 kind: Deployment metadata: name: a1-tf-notebook namespace: org2 spec: replicas: 1 selector: matchLabels: app: tf-notebook template: metadata: labels: app: tf-notebook spec: containers: - image: tensorflow/tensorflow:2.16.2-gpu-jupyter name: tf-notebook ports: - containerPort: 8888 name: notebook resources: limits: nvidia.com/gpu: 1 volumeMounts: - mountPath: /sample name: notebook-storage nodeSelector: nodegroup: gpu volumes: - name: notebook-storage persistentVolumeClaim: claimName: a1-tf-notebook-pvc