forked from catalin/fukuops
feat: add pz server
This commit is contained in:
parent
e935f66db2
commit
1994de8fcb
6 changed files with 122 additions and 9 deletions
19
k8s/playground/nfstest/pod.yaml
Normal file
19
k8s/playground/nfstest/pod.yaml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
kind: Pod
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: pod-using-nfs
|
||||
namespace: apps-fuku
|
||||
spec:
|
||||
containers:
|
||||
- name: app
|
||||
image: alpine
|
||||
volumeMounts:
|
||||
- name: data
|
||||
mountPath: /var/nfs
|
||||
command: ["/bin/sh"]
|
||||
args: ["-c", "sleep 500000"]
|
||||
volumes:
|
||||
- name: data
|
||||
persistentVolumeClaim:
|
||||
claimName: myapp-nfs
|
||||
Loading…
Add table
Add a link
Reference in a new issue