Skip to content

Commit 32e9543

Browse files
jojimtshaleman
jojimt
authored andcommitted
Netplugin changes to match model change (epg is no longer a child of nw). (#380)
* Netplugin changes corresponding to contiv-experimental/contivmodel#23 * Changes from merge * Review comments
1 parent d28c8a8 commit 32e9543

23 files changed

+312
-211
lines changed

Godeps/_workspace/src/github.com/contiv/contivmodel/appProfile.json

+1-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/contiv/contivmodel/client/contivModel.js

+2-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/contiv/contivmodel/client/contivModelClient.go

+12-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/contiv/contivmodel/client/contivModelClient.py

+6-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/contiv/contivmodel/contivModel.go

+4-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/contiv/contivmodel/endpointGroup.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/contiv/contivmodel/network.json

-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

netctl/commands.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ var Commands = []cli.Command{
6262
Name: "rm",
6363
Aliases: []string{"delete"},
6464
Usage: "Delete an endpoint group",
65-
ArgsUsage: "[network] [group]",
65+
ArgsUsage: "[group]",
6666
Flags: []cli.Flag{tenantFlag},
6767
Action: deleteEndpointGroup,
6868
},
@@ -349,7 +349,7 @@ var Commands = []cli.Command{
349349
{
350350
Name: "create",
351351
Usage: "Create an application profile",
352-
ArgsUsage: "[network] [app-profile]",
352+
ArgsUsage: "[app-profile]",
353353
Flags: []cli.Flag{
354354
tenantFlag,
355355
cli.StringFlag{
@@ -362,7 +362,7 @@ var Commands = []cli.Command{
362362
{
363363
Name: "update",
364364
Usage: "Update an application profile",
365-
ArgsUsage: "[network] [app-profile]",
365+
ArgsUsage: "[app-profile]",
366366
Flags: []cli.Flag{
367367
tenantFlag,
368368
cli.StringFlag{
@@ -376,7 +376,7 @@ var Commands = []cli.Command{
376376
Name: "rm",
377377
Aliases: []string{"delete"},
378378
Usage: "Delete an application profile",
379-
ArgsUsage: "[network] [app-profile]",
379+
ArgsUsage: "[app-profile]",
380380
Flags: []cli.Flag{tenantFlag},
381381
Action: deleteAppProfile,
382382
},

0 commit comments

Comments
 (0)