mirror of
https://github.com/TECHNOFAB11/zfs-localpv.git
synced 2025-12-12 22:40:12 +01:00
36 lines
No EOL
770 B
YAML
36 lines
No EOL
770 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: app-busybox
|
|
labels:
|
|
lkey: lvalue
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
lkey: lvalue
|
|
template:
|
|
metadata:
|
|
labels:
|
|
lkey: lvalue
|
|
spec:
|
|
containers:
|
|
- name: app-busybox
|
|
image: gcr.io/google-containers/busybox
|
|
imagePullPolicy: IfNotPresent
|
|
command:
|
|
- sh
|
|
- -c
|
|
- 'date > /busybox/date.txt; sync; sleep 5; sync; tail -f /dev/null;'
|
|
volumeMounts:
|
|
- name: testclaim
|
|
mountPath: /busybox
|
|
volumeClaimTemplates:
|
|
- metadata:
|
|
name: testclaim
|
|
spec:
|
|
accessModes: [ "ReadWriteOnce" ]
|
|
storageClassName: testclass
|
|
resources:
|
|
requests:
|
|
storage: teststorage |