mirror of https://github.com/easzlab/kubeasz.git
22 lines
394 B
YAML
22 lines
394 B
YAML
kind: Pod
|
|
apiVersion: v1
|
|
metadata:
|
|
name: test-pod
|
|
spec:
|
|
containers:
|
|
- name: test-pod
|
|
image: busybox
|
|
command:
|
|
- "/bin/sh"
|
|
args:
|
|
- "-c"
|
|
- "touch /mnt/SUCCESS && exit 0 || exit 1"
|
|
volumeMounts:
|
|
- name: nfs-pvc
|
|
mountPath: "/mnt"
|
|
restartPolicy: "Never"
|
|
volumes:
|
|
- name: nfs-pvc
|
|
persistentVolumeClaim:
|
|
claimName: test-claim
|