2018-02-01 06:14:18 +00:00
|
|
|
---
|
2017-11-01 14:25:35 +00:00
|
|
|
# The config map is used to configure local volume discovery for Local SSDs on GCE and GKE.
|
|
|
|
# It is a map from storage class to its mount configuration.
|
|
|
|
kind: ConfigMap
|
2018-02-01 06:14:18 +00:00
|
|
|
apiVersion: v1
|
2017-11-01 14:25:35 +00:00
|
|
|
metadata:
|
|
|
|
name: local-volume-config
|
2018-02-07 16:57:54 +00:00
|
|
|
namespace: {{ system_namespace }}
|
2017-11-01 14:25:35 +00:00
|
|
|
data:
|
2018-02-08 23:11:07 +00:00
|
|
|
"{{ local_volume_storage_class }}": |
|
2018-02-07 16:47:05 +00:00
|
|
|
{
|
|
|
|
"hostDir": "{{ local_volume_base_dir }}",
|
2018-02-07 17:42:42 +00:00
|
|
|
"mountDir": "{{ local_volume_mount_dir }}"
|
2018-02-07 16:47:05 +00:00
|
|
|
}
|