28 lines
545 B
YAML
28 lines
545 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: longhorn-pod
|
|
namespace: default
|
|
spec:
|
|
nodeName: k8s-worker3
|
|
restartPolicy: Always
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:stable-alpine
|
|
imagePullPolicy: IfNotPresent
|
|
livenessProbe:
|
|
exec:
|
|
command:
|
|
- ls
|
|
- /data/lost+found
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 5
|
|
volumeMounts:
|
|
- name: volv
|
|
mountPath: /data
|
|
ports:
|
|
- containerPort: 80
|
|
volumes:
|
|
- name: volv
|
|
persistentVolumeClaim:
|
|
claimName: longhorn-pvc |