@@ -39,7 +39,7 @@ AgentPort is the default port on which to attempt contacting an agent
39
39
``` go
40
40
var (
41
41
// ConfigPath is the path in the config store.
42
- ConfigPath = " / lochness/config/"
42
+ ConfigPath = " lochness/config/"
43
43
)
44
44
```
45
45
57
57
``` go
58
58
var (
59
59
// FWGroupPath is the path in the config store
60
- FWGroupPath = " / lochness/fwgroups/"
60
+ FWGroupPath = " lochness/fwgroups/"
61
61
)
62
62
```
63
63
64
64
``` go
65
65
var (
66
66
// FlavorPath is the path in the config store
67
- FlavorPath = " / lochness/flavors/"
67
+ FlavorPath = " lochness/flavors/"
68
68
)
69
69
```
70
70
@@ -78,35 +78,35 @@ var (
78
78
``` go
79
79
var (
80
80
// HypervisorPath is the path in the config store
81
- HypervisorPath = " / lochness/hypervisors/"
81
+ HypervisorPath = " lochness/hypervisors/"
82
82
)
83
83
```
84
84
85
85
``` go
86
86
var (
87
87
// NetworkPath is the path in the config store.
88
- NetworkPath = " / lochness/networks/"
88
+ NetworkPath = " lochness/networks/"
89
89
)
90
90
```
91
91
92
92
``` go
93
93
var (
94
94
// SubnetPath is the key prefix for subnets
95
- SubnetPath = " / lochness/subnets/"
95
+ SubnetPath = " lochness/subnets/"
96
96
)
97
97
```
98
98
99
99
``` go
100
100
var (
101
101
// VLANGroupPath is the path in the config store for VLAN groups
102
- VLANGroupPath = " / lochness/vlangroups/"
102
+ VLANGroupPath = " lochness/vlangroups/"
103
103
)
104
104
```
105
105
106
106
``` go
107
107
var (
108
108
// VLANPath is the path in the config store for VLANs
109
- VLANPath = " / lochness/vlans/"
109
+ VLANPath = " lochness/vlans/"
110
110
)
111
111
```
112
112
0 commit comments