Skip to content

Commit 5cb8724

Browse files
committed
fix: correct runtime name
Signed-off-by: Chris Butler <[email protected]>
1 parent 6331906 commit 5cb8724

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
apiVersion: v1
2+
kind: PersistentVolumeClaim
3+
metadata:
4+
name: block-pvc-2
5+
spec:
6+
accessModes:
7+
- ReadWriteOnce
8+
volumeMode: Block # Critical for raw block access
9+
resources:
10+
requests:
11+
storage: 10Gi

charts/coco-supported/encrypted-storage/templates/coco-example.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ metadata:
44
name: secure-coco
55
labels:
66
app: secure-coco
7+
annotations:
8+
peerpods: "true"
79
spec:
8-
runtimeClass: kata-remote
10+
runtimeClassName: kata-remote
911
containers:
1012
- name: hello-openshift
1113
image: quay.io/openshift/origin-hello-openshift
@@ -108,7 +110,7 @@ spec:
108110
emptyDir: {}
109111
- name: csi-block-vol
110112
persistentVolumeClaim:
111-
claimName: block-pvc
113+
claimName: block-pvc-2
112114
- name: secure-mount # Shared volume definition
113115
emptyDir:
114116
medium: Memory

0 commit comments

Comments
 (0)