13 lines
332 B
YAML
13 lines
332 B
YAML
- op: replace # action
|
|
path: /data/config.json # resource we want to change
|
|
value: |-
|
|
{
|
|
"storageClassConfigs": {
|
|
"ssd": {
|
|
"sharedFileSystemPath": "/opt/local-path-provisioner/ssd"
|
|
},
|
|
"hdd": {
|
|
"sharedFileSystemPath": "/opt/local-path-provisioner/hdd"
|
|
}
|
|
}
|
|
} |