Re: [pve-devel] [PATCH common 1/1] JSONSchema: add idmap parser and storagepair format

2020-04-02 Thread Fabian Grünbichler
On April 1, 2020 5:39 pm, Thomas Lamprecht wrote: > On 3/30/20 1:41 PM, Fabian Grünbichler wrote: >> generalized from the start to support extension to bridges or other >> entities as well. >> >> this gets us incremental support for the CLI, e.g.: >> >> --targetstorage foo:bar --targetstorage bar

Re: [pve-devel] [PATCH common 1/1] JSONSchema: add idmap parser and storagepair format

2020-04-01 Thread Thomas Lamprecht
On 3/30/20 1:41 PM, Fabian Grünbichler wrote: > generalized from the start to support extension to bridges or other > entities as well. > > this gets us incremental support for the CLI, e.g.: > > --targetstorage foo:bar --targetstorage bar:baz --targetstorage foo > > creates a mapping of > > fo

[pve-devel] [PATCH common 1/1] JSONSchema: add idmap parser and storagepair format

2020-03-30 Thread Fabian Grünbichler
generalized from the start to support extension to bridges or other entities as well. this gets us incremental support for the CLI, e.g.: --targetstorage foo:bar --targetstorage bar:baz --targetstorage foo creates a mapping of foo=>bar bar=>baz with a default of foo Signed-off-by: Fabian Grün