forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpv-staging.yaml
More file actions
41 lines (41 loc) · 767 Bytes
/
Copy pathpv-staging.yaml
File metadata and controls
41 lines (41 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
kind: PersistentVolume
apiVersion: v1
metadata:
labels:
app: kettle-staging
name: kettle-data-staging
spec:
capacity:
storage: 201Gi
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
storageClassName: ssd
gcePersistentDisk:
pdName: kettle-data-staging
fsType: ext4
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
labels:
app: kettle-staging
name: kettle-data-staging
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 201Gi
storageClassName: ssd
volumeName: kettle-data-staging
---
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: ssd
provisioner: kubernetes.io/gce-pd
parameters:
type: pd-ssd
allowVolumeExpansion: true
reclaimPolicy: Delete