This repository has been archived by the owner on Jan 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
spec
48 lines (45 loc) · 1.5 KB
/
spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
name: csi-broker
templates:
ctl.erb: bin/csi_broker_ctl
service.json.erb: config/service.json
packages:
- csibroker
properties:
csi-broker.listen-addr:
description: "address csi-broker listens on"
default: "0.0.0.0:9020"
csi-broker.csi-controller-addr:
description: "URL of the remote csi controller listens on"
default: ""
csi-broker.data-dir:
description: "Directory on broker VM to persist instance and binding state"
default: "/var/vcap/store/csi-broker"
csi-broker.username:
description: "Basic auth username to verify on incoming Service Broker requests"
default: "admin"
csi-broker.password:
description: "Basic auth password to verify on incoming Service Broker requests"
default: "admin"
csi-broker.services:
description: "List of services and plans supported by CSI broker"
default:
- id: csi-nfs-service-id
name: "csi-nfs"
driver_name: csi-nfsplugin
description: "CSI NFS Service (experimental)"
plans:
- id: csi-nfs-service-plan-id
name: "free"
description: "CSI NFS Service Plan"
display_name: "CSI NFS Service Plan"
- id: csi-local-service-id
name: "csi-local-volume"
driver_name: com.github.jeffpak.local-node-plugin
controller_address: 127.0.0.1:9860
description: "CSI Local Service (experimental)"
plans:
- id: csi-local-service-plan-id
name: "free"
description: "CSI Local Service Plan"
display_name: "CSI Local Service Plan"