mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-16 19:34:37 -05:00
f4ff473677
Add the option to run K-Bench performance to the manual CI workflow Install CSI drivers in the cluster for K-Bench benchmarks Attach the results to the workflow in the GitHub Actions view
40 lines
725 B
YAML
40 lines
725 B
YAML
---
|
|
kind: PersistentVolumeClaim
|
|
apiVersion: v1
|
|
metadata:
|
|
name: fio-block-pvc
|
|
namespace: kbench-pod-namespace
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
storageClassName: encrypted-storage
|
|
resources:
|
|
requests:
|
|
storage: 10Gi
|
|
---
|
|
kind: PersistentVolumeClaim
|
|
apiVersion: v1
|
|
metadata:
|
|
name: netperfserver-pvc
|
|
namespace: kbench-pod-namespace
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
storageClassName: encrypted-storage
|
|
resources:
|
|
requests:
|
|
storage: 10Gi
|
|
---
|
|
kind: PersistentVolumeClaim
|
|
apiVersion: v1
|
|
metadata:
|
|
name: netperfclient-pvc
|
|
namespace: kbench-pod-namespace
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
storageClassName: encrypted-storage
|
|
resources:
|
|
requests:
|
|
storage: 10Gi
|