Add storage class for ocean pool

This commit is contained in:
2025-07-25 18:16:55 +02:00
parent d3eb6349f9
commit 660acfd4b3
4 changed files with 45 additions and 7 deletions

View File

@@ -72,10 +72,29 @@ spec:
name: ubuntu
spec:
containers:
- name: ubuntu
image: ubuntu
command:
- sleep
- infinity
securityContext:
privileged: true
- name: ubuntu
image: ubuntu
command:
- sleep
- infinity
securityContext:
privileged: true
volumeMounts:
- mountPath: /dev
name: dev
- mountPath: /host
name: host
volumes:
- name: host
hostPath:
path: /
type: Directory
- name: dev
hostPath:
path: /dev
type: Directory
tolerations:
- key: node.kubernetes.io/disk-pressure
operator: Exists
effect: PreferNoSchedule