Skip to content

Commit

Permalink
Merge branch 'v3' into group-manager
Browse files Browse the repository at this point in the history
  • Loading branch information
kian99 authored Dec 5, 2024
2 parents 051a6ec + 21dfc5b commit 44ec4e1
Show file tree
Hide file tree
Showing 24 changed files with 405 additions and 314 deletions.
28 changes: 15 additions & 13 deletions cmd/jimmctl/cmd/addcloudtocontroller.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@ import (
apiparams "github.com/canonical/jimm/v3/pkg/api/params"
)

var (
const (
addCloudToControllerCommandDoc = `
add-cloud-to-controller command adds the specified cloud to a specific
controller on jimm.
The add-cloud-to-controller command adds the specified cloud to a specific
controller on jimm.
One can specify a cloud definition via a yaml file passed with the --cloud
flag. If the flag is missing, the command will assume the cloud definition
is already known and will error otherwise.
Example:
jimmctl add-cloud-to-controller <controller_name> <cloud_name>
jimmctl add-cloud-to-controller <controller_name> <cloud_name> --cloud=<cloud_file_path>
One can specify a cloud definition via a yaml file passed with the --cloud
flag. If the flag is missing, the command will assume the cloud definition
is already known and will error otherwise.
`
addCloudToControllerExample = `
jimmctl add-cloud-to-controller mycontroller mycloud
jimmctl add-cloud-to-controller mycontroller mycloud --cloud=./cloud-definition.yaml
`
)

Expand Down Expand Up @@ -78,9 +78,11 @@ type addCloudToControllerCommand struct {
// Info implements Command.Info.
func (c *addCloudToControllerCommand) Info() *cmd.Info {
return jujucmd.Info(&cmd.Info{
Name: "add-cloud-to-controller",
Purpose: "Add cloud to specific controller in jimm",
Doc: addCloudToControllerCommandDoc,
Name: "add-cloud-to-controller",
Args: "<controller_name> <cloud_name>",
Purpose: "Add cloud to specific controller in jimm",
Doc: addCloudToControllerCommandDoc,
Examples: addCloudToControllerExample,
})
}

Expand Down
18 changes: 10 additions & 8 deletions cmd/jimmctl/cmd/addcontroller.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ var (
stdinMarkers = []string{"-"}

addControllerCommandDoc = `
add-controller command adds a controller to jimm.
Example:
jimmctl add-controller <filename>
jimmctl add-controller <filename> --format json
The add-controller command adds a controller to jimm.
`
addControllerCommandExample = `
jimmctl add-controller ./controller-info
jimmctl add-controller ./controller-info.yaml --format json
`
)

Expand All @@ -50,9 +50,11 @@ type addControllerCommand struct {

func (c *addControllerCommand) Info() *cmd.Info {
return jujucmd.Info(&cmd.Info{
Name: "add-controller",
Purpose: "Add controller to jimm",
Doc: addControllerCommandDoc,
Name: "add-controller",
Purpose: "Add controller to jimm",
Args: "<filepath>",
Doc: addControllerCommandDoc,
Examples: addControllerCommandExample,
})
}

Expand Down
11 changes: 6 additions & 5 deletions cmd/jimmctl/cmd/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@ import (
jujucmd "github.com/juju/cmd/v3"
)

var authDoc = `
auth enables users to manage authorisation model used by JIMM.
const authDoc = `
The auth command enables user access management.
`

func NewAuthCommand() *jujucmd.SuperCommand {
cmd := jujucmd.NewSuperCommand(jujucmd.SuperCommandParams{
Name: "auth",
Doc: authDoc,
Purpose: "Authorisation model management.",
Name: "auth",
UsagePrefix: "jimmctl",
Doc: authDoc,
Purpose: "Authorisation model management.",
})
cmd.Register(NewGroupCommand())
cmd.Register(NewRelationCommand())
Expand Down
34 changes: 17 additions & 17 deletions cmd/jimmctl/cmd/controllerinfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,20 @@ import (
apiparams "github.com/canonical/jimm/v3/pkg/api/params"
)

var (
const (
controllerInfoCommandDoc = `
controller-info command writes controller information contained
in the juju client store to a yaml file.
The controller-info command writes controller information contained
in the juju client store to a yaml file.
If a public address is specified, the output controller information
will contain the public address provided and omit a CA cert, this assumes
that the server is secured with a public certificate.
Use the --local flag if the server is not configured with a public cert.
If a public address is specified, the output controller information
will contain the public address provided and omit a CA cert, this assumes
that the server is secured with a public certificate.
See examples below for usage.
Examples:
jimmctl controller-info <name> <filename> <public address>
jimmctl controller-info <name> <filename> --local
Use the --local flag if the server is not configured with a public address.
`
controllerInfoCommandExample = `
jimmctl controller-info mycontroller ./destination/file.yaml mycontroller.example.com
jimmctl controller-info mycontroller ./destination/file.yaml --local
`
)

Expand Down Expand Up @@ -60,17 +58,19 @@ type controllerInfoCommand struct {

func (c *controllerInfoCommand) Info() *cmd.Info {
return jujucmd.Info(&cmd.Info{
Name: "controller-info",
Purpose: "Stores controller info to a yaml file",
Doc: controllerInfoCommandDoc,
Name: "controller-info",
Args: "<name> <filepath> [<public address>]",
Purpose: "Stores controller info to a yaml file",
Doc: controllerInfoCommandDoc,
Examples: controllerInfoCommandExample,
})
}

// SetFlags implements Command.SetFlags.
func (c *controllerInfoCommand) SetFlags(f *gnuflag.FlagSet) {
c.CommandBase.SetFlags(f)
f.BoolVar(&c.local, "local", false, "If local flag is specified, then the local API address and CA cert of the controller will be used.")
f.StringVar(&c.tlsHostname, "tls-hostname", "", "Specify the hostname for TLS verfiication.")
f.StringVar(&c.tlsHostname, "tls-hostname", "", "Specify the hostname for TLS verification.")
}

// Init implements the cmd.Command interface.
Expand Down
22 changes: 12 additions & 10 deletions cmd/jimmctl/cmd/crossmodelquery.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ import (
apiparams "github.com/canonical/jimm/v3/pkg/api/params"
)

var (
const (
// stdinMarkers contains file names that are taken to be stdin.
crossModelQueryDoc = `
query-models command queries all models available to the current user
The query-models command queries all models available to the current user
performing the query against each model status individually, returning
the collated query responses for each model.
The query will run against the exact output of "juju status --format json",
The query runs against the output of "juju status --format json",
as such you can format your query against an output like this.
The queries will expect a JQ query string.
Example:
jimmctl query-models '.applications | with_entries(select(.key=="nginx-ingress-integrator"))'
The queries expect a JQ query string.
`
crossModelQueryExample = `
jimmctl query-models '.applications | with_entries(select(.key=="nginx-ingress-integrator"))'
`
)

Expand Down Expand Up @@ -80,9 +80,11 @@ func (c *crossModelQueryCommand) SetFlags(f *gnuflag.FlagSet) {
// Info implements modelcmd.Command.
func (c *crossModelQueryCommand) Info() *cmd.Info {
return jujucmd.Info(&cmd.Info{
Name: "query-models",
Purpose: "Query model statuses",
Doc: crossModelQueryDoc,
Name: "query-models",
Args: "<query>",
Purpose: "Query model statuses",
Doc: crossModelQueryDoc,
Examples: crossModelQueryExample,
})
}

Expand Down
19 changes: 12 additions & 7 deletions cmd/jimmctl/cmd/grantauditlogaccess.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,15 @@ import (
apiparams "github.com/canonical/jimm/v3/pkg/api/params"
)

var grantAuditLogAccessDoc = `
grant-audit-log-access grants user access to audit logs.
const (
grantAuditLogAccessDoc = `
Grants a user access to read audit logs.
`

Example:
jimmctl grant-audit-log-access <username>
grantAuditLogAccessExamples = `
jimmctl grant-audit-log-access <username>
`
)

// NewGrantAuditLogAccessCommand returns a command used to grant
// users access to audit logs.
Expand All @@ -45,9 +48,11 @@ type grantAuditLogAccessCommand struct {

func (c *grantAuditLogAccessCommand) Info() *cmd.Info {
return jujucmd.Info(&cmd.Info{
Name: "grant-audit-log-access",
Purpose: "Grants access to audit logs.",
Doc: grantAuditLogAccessDoc,
Name: "grant-audit-log-access",
Args: "<username>",
Purpose: "Grants access to audit logs.",
Doc: grantAuditLogAccessDoc,
Examples: grantAuditLogAccessExamples,
})
}

Expand Down
76 changes: 41 additions & 35 deletions cmd/jimmctl/cmd/group.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,47 +20,46 @@ import (
apiparams "github.com/canonical/jimm/v3/pkg/api/params"
)

var (
const (
groupDoc = `
group command enables group management for jimm
The group command enables group management for jimm
`

addGroupDoc = `
add command adds group to jimm.
Example:
jimmctl auth group add <name>
The add command adds group to jimm.
`
addGroupExample = `
jimmctl auth group add mygroup
`
renameGroupDoc = `
rename command renames a group in jimm.
Example:
jimmctl auth group rename <name> <new name>
The rename command renames a group in jimm.
`
renameGroupExample = `
jimmctl auth group rename mygroup newgroup
`
removeGroupDoc = `
rename command removes a group in jimm.
Usage:
-y Remove group without promping for confirmation
The remove command removes a group in jimm.
`

Example:
jimmctl auth group remove <name>
removeGroupExample = `
jimmctl auth group remove mygroup
`

listGroupsDoc = `
list command lists all groups in jimm.
Example:
jimmctl auth group list
The list command lists all groups in jimm.
`
listGroupsExample = `
jimmctl auth group list
`
)

// NewGroupCommand returns a command for group management.
func NewGroupCommand() *jujucmdv3.SuperCommand {
cmd := jujucmd.NewSuperCommand(jujucmdv3.SuperCommandParams{
Name: "group",
Doc: groupDoc,
Purpose: "Group management.",
Name: "group",
UsagePrefix: "auth",
Doc: groupDoc,
Purpose: "Group management.",
})
cmd.Register(newAddGroupCommand())
cmd.Register(newRenameGroupCommand())
Expand Down Expand Up @@ -93,9 +92,11 @@ type addGroupCommand struct {
// Info implements the cmd.Command interface.
func (c *addGroupCommand) Info() *cmd.Info {
return jujucmd.Info(&cmd.Info{
Name: "add",
Purpose: "Add group to jimm.",
Doc: addGroupDoc,
Name: "add",
Args: "<name>",
Purpose: "Add group to jimm.",
Doc: addGroupDoc,
Examples: addGroupExample,
})
}

Expand Down Expand Up @@ -170,9 +171,11 @@ type renameGroupCommand struct {
// Info implements the cmd.Command interface.
func (c *renameGroupCommand) Info() *cmd.Info {
return jujucmd.Info(&cmd.Info{
Name: "rename",
Purpose: "Rename a group.",
Doc: renameGroupDoc,
Name: "rename",
Args: "<name> <new name>",
Purpose: "Rename a group.",
Doc: renameGroupDoc,
Examples: renameGroupExample,
})
}

Expand Down Expand Up @@ -238,9 +241,11 @@ type removeGroupCommand struct {
// Info implements the cmd.Command interface.
func (c *removeGroupCommand) Info() *cmd.Info {
return jujucmd.Info(&cmd.Info{
Name: "remove",
Purpose: "Remove a group.",
Doc: removeGroupDoc,
Name: "remove",
Args: "<name>",
Purpose: "Remove a group.",
Doc: removeGroupDoc,
Examples: removeGroupExample,
})
}

Expand Down Expand Up @@ -331,9 +336,10 @@ type listGroupsCommand struct {
// Info implements the cmd.Command interface.
func (c *listGroupsCommand) Info() *cmd.Info {
return jujucmd.Info(&cmd.Info{
Name: "list",
Purpose: "List all groups.",
Doc: listGroupsDoc,
Name: "list",
Purpose: "List all groups.",
Doc: listGroupsDoc,
Examples: listGroupsExample,
})
}

Expand Down
Loading

0 comments on commit 44ec4e1

Please sign in to comment.