Skip to content

Commit

Permalink
PLT-678: addressing review comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
nikchern committed Sep 22, 2023
1 parent e8872d7 commit 5eeb433
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ type V1Client struct {
// Cluster generic
GetClusterWithoutStatusFn func(string) (*models.V1SpectroCluster, error)
GetClusterFn func(scope, uid string) (*models.V1SpectroCluster, error)
GetClusterAdminConfigFn func(uid string) (string, error)
GetClusterKubeConfigFn func(uid string) (string, error)
GetClusterBackupConfigFn func(uid string) (*models.V1ClusterBackup, error)
GetClusterScanConfigFn func(uid string) (*models.V1ClusterComplianceScan, error)
Expand Down
4 changes: 2 additions & 2 deletions client/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ func (h *V1Client) GetClusterKubeConfig(uid, ClusterContext string) (string, err
}

func (h *V1Client) GetClusterAdminKubeConfig(uid, ClusterContext string) (string, error) {
if h.GetClusterKubeConfigFn != nil {
return h.GetClusterKubeConfigFn(uid)
if h.GetClusterAdminConfigFn != nil {
return h.GetClusterAdminConfigFn(uid)
}
client, err := h.GetClusterClient()
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/go-openapi/strfmt v0.20.0
github.com/pkg/errors v0.9.1
github.com/spectrocloud/gomi v1.14.1-0.20230412095143-b0595c6c6f08
github.com/spectrocloud/hapi v1.14.1-0.20230814141242-394093e7fedb
github.com/spectrocloud/hapi v1.14.1-0.20230921130725-2afc79a3ea05
github.com/stretchr/testify v1.7.0
)

Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,8 @@ github.com/spectrocloud/hapi v1.14.1-0.20230809113851-e533537baa55 h1:0V4LeAlh+/
github.com/spectrocloud/hapi v1.14.1-0.20230809113851-e533537baa55/go.mod h1:O/Bkbw92QPSGPNQPqKt7Qlkn+9BKK/a22KTUlk76KHI=
github.com/spectrocloud/hapi v1.14.1-0.20230814141242-394093e7fedb h1:Y/TDXfEZ6GJbYi4bKxFS0HFvmOL6Xs653BoxuZjuKEQ=
github.com/spectrocloud/hapi v1.14.1-0.20230814141242-394093e7fedb/go.mod h1:O/Bkbw92QPSGPNQPqKt7Qlkn+9BKK/a22KTUlk76KHI=
github.com/spectrocloud/hapi v1.14.1-0.20230921130725-2afc79a3ea05 h1:QHuGuSItjNA0iVda1OCvHlWDjps6NR1X1/pjlYmIOp8=
github.com/spectrocloud/hapi v1.14.1-0.20230921130725-2afc79a3ea05/go.mod h1:aI54jbfaSec1ikHSMOJQ7mMOTaRKpQTRCoMKamhBE9s=
github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ=
github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
Expand Down

0 comments on commit 5eeb433

Please sign in to comment.