43 lines
985 B
YAML
Executable File
43 lines
985 B
YAML
Executable File
kind: ConfigMap
|
|
apiVersion: v1
|
|
metadata:
|
|
name: local-path-config
|
|
namespace: kube-system
|
|
data:
|
|
config.json: |-
|
|
{
|
|
"nodePathMap": [
|
|
{
|
|
"node": "DEFAULT_PATH_FOR_NON_LISTED_NODES",
|
|
"paths": [
|
|
"/mnt/data"
|
|
]
|
|
}
|
|
],
|
|
"setupCommand": "/manager",
|
|
"teardownCommand": "/manager"
|
|
}
|
|
setup: |-
|
|
#!/bin/sh
|
|
set -eu
|
|
mkdir -m 0777 -p "$VOL_DIR"
|
|
teardown: |-
|
|
#!/bin/sh
|
|
set -eu
|
|
rm -rf "$VOL_DIR"
|
|
helperPod.yaml: |-
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: helper-pod
|
|
spec:
|
|
priorityClassName: system-node-critical
|
|
tolerations:
|
|
- key: node.kubernetes.io/disk-pressure
|
|
operator: Exists
|
|
effect: NoSchedule
|
|
containers:
|
|
- name: helper-pod
|
|
image: busybox:1.36@sha256:9ae97d36d26566ff84e8893c64a6dc4fe8ca6d1144bf5b87b2b85a32def253c7
|
|
|