Add support for volume scopes
This is similar to network scopes where a volume can either be `local` or `global`. A `global` volume is one that exists across the entire cluster where as a `local` volume exists on a single engine. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
This commit is contained in:
parent
f636807065
commit
7ee212504d
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ func main() {
|
||||||
|
|
||||||
errorOut("parser error", generatedTempl.Execute(&buf, analysis))
|
errorOut("parser error", generatedTempl.Execute(&buf, analysis))
|
||||||
src, err := format.Source(buf.Bytes())
|
src, err := format.Source(buf.Bytes())
|
||||||
errorOut("error formating generated source:\n"+buf.String(), err)
|
errorOut("error formatting generated source:\n"+buf.String(), err)
|
||||||
errorOut("error writing file", ioutil.WriteFile(*outputFile, src, 0644))
|
errorOut("error writing file", ioutil.WriteFile(*outputFile, src, 0644))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue