-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
435139f
commit ac1643a
Showing
4 changed files
with
116 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package cmd | ||
|
||
import ( | ||
"fmt" | ||
"github.com/spf13/cobra" | ||
"github.com/exoscale/cli/pkg/account" | ||
"github.com/exoscale/cli/pkg/globalstate" | ||
v3 "github.com/exoscale/egoscale/v3" | ||
) | ||
|
||
func (c *dbaasExternalEndpointCreateCmd) createPrometheus(_ *cobra.Command, _ []string) error { | ||
ctx := gContext | ||
client, err := switchClientZoneV3(ctx, globalstate.EgoscaleV3Client, v3.ZoneName(account.CurrentAccount.DefaultZone)) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
prometheusRequestPayload := v3.CreateDBAASExternalEndpointPrometheusRequest{ | ||
Settings: &v3.DBAASEndpointPrometheus{}, | ||
} | ||
|
||
if c.PrometheusBasicAuthPassword != "" { | ||
prometheusRequestPayload.Settings.BasicAuthPassword= c.PrometheusBasicAuthPassword | ||
} | ||
if c.PrometheusBasicAuthUsername != "" { | ||
prometheusRequestPayload.Settings.BasicAuthUsername= c.PrometheusBasicAuthUsername | ||
} | ||
|
||
op, err := client.CreateDBAASExternalEndpointPrometheus(ctx, c.Name, prometheusRequestPayload) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
decorateAsyncOperation(fmt.Sprintf("Creating DBaaS Prometheus external Endpoint %q", c.Name), func() { | ||
op, err = client.Wait(ctx, op, v3.OperationStateSuccess) | ||
}) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
endpointID := op.Reference.ID.String() | ||
if !globalstate.Quiet { | ||
return (&dbaasExternalEndpointShowCmd{ | ||
cliCommandSettings: defaultCLICmdSettings(), | ||
EndpointID: endpointID, | ||
Type: "prometheus", | ||
}).cmdRun(nil, nil) | ||
} | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
package cmd | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
|
||
"github.com/exoscale/cli/pkg/account" | ||
"github.com/exoscale/cli/pkg/globalstate" | ||
"github.com/exoscale/cli/pkg/output" | ||
"github.com/exoscale/cli/table" | ||
v3 "github.com/exoscale/egoscale/v3" | ||
) | ||
|
||
type prometheusOutput struct { | ||
ID string `json:"id"` | ||
Name string `json:"name"` | ||
Type string `json:"type"` | ||
Settings v3.DBAASEndpointPrometheus `json:"settings"` | ||
} | ||
|
||
func (o *prometheusOutput) ToJSON() { output.JSON(o) } | ||
func (o *prometheusOutput) ToText() { output.Text(o) } | ||
func (o *prometheusOutput) ToTable() { | ||
t := table.NewTable(os.Stdout) | ||
t.SetHeader([]string{"Prometheus External Endpoint"}) | ||
defer t.Render() | ||
|
||
t.Append([]string{"Endpoint ID", o.ID}) | ||
t.Append([]string{"Endpoint Name", o.Name}) | ||
t.Append([]string{"Endpoint Type", o.Type}) | ||
|
||
settings := o.Settings | ||
t.Append([]string{"Basic Auth Username", settings.BasicAuthUsername}) | ||
t.Append([]string{"Basic Auth Password", settings.BasicAuthPassword}) | ||
} | ||
|
||
func (c *dbaasExternalEndpointShowCmd) showPrometheus() (output.Outputter, error) { | ||
ctx := gContext | ||
client, err := switchClientZoneV3(ctx, globalstate.EgoscaleV3Client, v3.ZoneName(account.CurrentAccount.DefaultZone)) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
endpointUUID, err := v3.ParseUUID(c.EndpointID) | ||
if err != nil { | ||
return nil, fmt.Errorf("invalid endpoint ID: %w", err) | ||
} | ||
|
||
endpointResponse, err := client.GetDBAASExternalEndpointPrometheus(ctx, endpointUUID) | ||
if err != nil { | ||
return nil, fmt.Errorf("error getting Prometheus external endpoint: %w", err) | ||
} | ||
|
||
output := &prometheusOutput{ | ||
ID: endpointResponse.ID.String(), | ||
Name: endpointResponse.Name, | ||
Type: string(endpointResponse.Type), | ||
Settings: *endpointResponse.Settings, | ||
} | ||
|
||
return output, nil | ||
} |