对齐文件规范

This commit is contained in:
2026-03-27 16:58:41 +08:00
parent 231b6713c4
commit 31709425e2
235 changed files with 5433 additions and 2850 deletions

View File

@@ -0,0 +1,26 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: nfs-direct-demo
namespace: default
spec:
replicas: 1
selector:
matchLabels:
app: nfs-direct-demo
template:
metadata:
labels:
app: nfs-direct-demo
spec:
containers:
- name: app
image: nginx:alpine
volumeMounts:
- name: nfs-data
mountPath: /usr/share/nginx/html
volumes:
- name: nfs-data
nfs:
server: <NFS_SERVER_IP>
path: <NFS_EXPORT_PATH_OR_SUBDIR>