-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: cluster scanner first commit #2
Open
caroldelwing
wants to merge
4
commits into
main
Choose a base branch
from
cluster-scanner
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# Cluster Scanner | ||
|
||
The **Cluster Scanner** tool uses the Palette Go SDK to scan your Palette environment and identify clusters that have been active for more than 24 hours. | ||
|
||
## Prerequisites | ||
|
||
- Go version 1.22 or later | ||
- Git | ||
- The `palette-samples` repository available locally | ||
- A Palette acount | ||
- A Palette API key | ||
|
||
## Usage | ||
|
||
1. Open a terminal window and export your Palette URL. Substitute `<REPLACE_ME>` with your Palette URL, for example, `console.spectrocloud.com`. | ||
|
||
```shell | ||
export PALETTE_HOST=<REPLACE_ME> | ||
``` | ||
|
||
2. Export your Palette API key. Replace `<REPLACE_ME>` with your Palette API key. | ||
|
||
```shell | ||
export PALETTE_API_KEY=<REPLACE_ME> | ||
``` | ||
|
||
3. To scan a specific project, export the project's UID. Substitute `<REPLACE_ME>` with the Palette project UID. If no project is provided, the tool assumes a tenant scope and scans clusters across all projects. | ||
|
||
```shell | ||
export PALETTE_PROJECT_UID=<REPLACE_ME> | ||
``` | ||
|
||
4. Navigate to the `cluster-scanner` folder. | ||
|
||
```shell | ||
cd cluster-scanner | ||
``` | ||
|
||
5. Issue the command below to download the required Palette SDK modules. | ||
|
||
```shell | ||
go get ./... | ||
``` | ||
|
||
6. Execute the `cluster-scanner` application. | ||
|
||
```shell | ||
go run . | ||
``` | ||
|
||
The application will print the clusters that have been active in your Palette environment for more than 24 hours. | ||
|
||
```text hideClipboard | ||
time=2024-10-28T21:21:47.516-04:00 level=INFO msg="Setting scope to tenant." | ||
time=2024-10-28T21:21:47.516-04:00 level=INFO msg="Searching for clusters..." | ||
time=2024-10-28T21:21:48.297-04:00 level=INFO msg="The aws cluster named aws-test has been running for 2 weeks 6 days 2 hours. Are you sure you need this cluster?" | ||
``` |
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,38 @@ | ||
module github.com/spectrocloud/palette-samples/cluster-scanner | ||
|
||
go 1.22.5 | ||
|
||
toolchain go1.22.8 | ||
|
||
require ( | ||
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect | ||
github.com/go-errors/errors v1.5.1 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/go-openapi/analysis v0.23.0 // indirect | ||
github.com/go-openapi/errors v0.22.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.21.0 // indirect | ||
github.com/go-openapi/jsonreference v0.21.0 // indirect | ||
github.com/go-openapi/loads v0.22.0 // indirect | ||
github.com/go-openapi/runtime v0.28.0 // indirect | ||
github.com/go-openapi/spec v0.21.0 // indirect | ||
github.com/go-openapi/strfmt v0.23.0 // indirect | ||
github.com/go-openapi/swag v0.23.0 // indirect | ||
github.com/go-openapi/validate v0.24.0 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/oklog/ulid v1.3.1 // indirect | ||
github.com/opentracing/opentracing-go v1.2.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/spectrocloud/palette-sdk-go v0.0.0-20240930211255-e224a905d31a // indirect | ||
go.mongodb.org/mongo-driver v1.16.0 // indirect | ||
go.opentelemetry.io/otel v1.28.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.28.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.28.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/sys v0.22.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
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,70 @@ | ||
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 h1:DklsrG3dyBCFEj5IhUbnKptjxatkF07cF2ak3yi77so= | ||
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= | ||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= | ||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= | ||
github.com/go-errors/errors v1.5.1 h1:ZwEMSLRCapFLflTpT7NKaAc7ukJ8ZPEjzlxt8rPN8bk= | ||
github.com/go-errors/errors v1.5.1/go.mod h1:sIVyrIiJhuEF+Pj9Ebtd6P/rEYROXFi3BopGUQ5a5Og= | ||
github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= | ||
github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= | ||
github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= | ||
github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= | ||
github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= | ||
github.com/go-openapi/analysis v0.23.0 h1:aGday7OWupfMs+LbmLZG4k0MYXIANxcuBTYUC03zFCU= | ||
github.com/go-openapi/analysis v0.23.0/go.mod h1:9mz9ZWaSlV8TvjQHLl2mUW2PbZtemkE8yA5v22ohupo= | ||
github.com/go-openapi/errors v0.22.0 h1:c4xY/OLxUBSTiepAg3j/MHuAv5mJhnf53LLMWFB+u/w= | ||
github.com/go-openapi/errors v0.22.0/go.mod h1:J3DmZScxCDufmIMsdOuDHxJbdOGC0xtUynjIx092vXE= | ||
github.com/go-openapi/jsonpointer v0.21.0 h1:YgdVicSA9vH5RiHs9TZW5oyafXZFc6+2Vc1rr/O9oNQ= | ||
github.com/go-openapi/jsonpointer v0.21.0/go.mod h1:IUyH9l/+uyhIYQ/PXVA41Rexl+kOkAPDdXEYns6fzUY= | ||
github.com/go-openapi/jsonreference v0.21.0 h1:Rs+Y7hSXT83Jacb7kFyjn4ijOuVGSvOdF2+tg1TRrwQ= | ||
github.com/go-openapi/jsonreference v0.21.0/go.mod h1:LmZmgsrTkVg9LG4EaHeY8cBDslNPMo06cago5JNLkm4= | ||
github.com/go-openapi/loads v0.22.0 h1:ECPGd4jX1U6NApCGG1We+uEozOAvXvJSF4nnwHZ8Aco= | ||
github.com/go-openapi/loads v0.22.0/go.mod h1:yLsaTCS92mnSAZX5WWoxszLj0u+Ojl+Zs5Stn1oF+rs= | ||
github.com/go-openapi/runtime v0.28.0 h1:gpPPmWSNGo214l6n8hzdXYhPuJcGtziTOgUpvsFWGIQ= | ||
github.com/go-openapi/runtime v0.28.0/go.mod h1:QN7OzcS+XuYmkQLw05akXk0jRH/eZ3kb18+1KwW9gyc= | ||
github.com/go-openapi/spec v0.21.0 h1:LTVzPc3p/RzRnkQqLRndbAzjY0d0BCL72A6j3CdL9ZY= | ||
github.com/go-openapi/spec v0.21.0/go.mod h1:78u6VdPw81XU44qEWGhtr982gJ5BWg2c0I5XwVMotYk= | ||
github.com/go-openapi/strfmt v0.23.0 h1:nlUS6BCqcnAk0pyhi9Y+kdDVZdZMHfEKQiS4HaMgO/c= | ||
github.com/go-openapi/strfmt v0.23.0/go.mod h1:NrtIpfKtWIygRkKVsxh7XQMDQW5HKQl6S5ik2elW+K4= | ||
github.com/go-openapi/swag v0.23.0 h1:vsEVJDUo2hPJ2tu0/Xc+4noaxyEffXNIs3cOULZ+GrE= | ||
github.com/go-openapi/swag v0.23.0/go.mod h1:esZ8ITTYEsH1V2trKHjAN8Ai7xHb8RV+YSZ577vPjgQ= | ||
github.com/go-openapi/validate v0.24.0 h1:LdfDKwNbpB6Vn40xhTdNZAnfLECL81w+VX3BumrGD58= | ||
github.com/go-openapi/validate v0.24.0/go.mod h1:iyeX1sEufmv3nPbBdX3ieNviWnOZaJ1+zquzJEf2BAQ= | ||
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= | ||
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= | ||
github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY= | ||
github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= | ||
github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0= | ||
github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= | ||
github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= | ||
github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= | ||
github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= | ||
github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= | ||
github.com/opentracing/opentracing-go v1.2.0 h1:uEJPy/1a5RIPAJ0Ov+OIO8OxWu77jEv+1B0VhjKrZUs= | ||
github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc= | ||
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= | ||
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= | ||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= | ||
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= | ||
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= | ||
github.com/spectrocloud/palette-sdk-go v0.0.0-20240930211255-e224a905d31a h1:u1itx2mJzS9VCjVRr3cXqSnJpBxELSay5pdgFHIhz8w= | ||
github.com/spectrocloud/palette-sdk-go v0.0.0-20240930211255-e224a905d31a/go.mod h1:dSlNvDS0qwUWTbrYI6P8x981mcbbRHFrBg67v5zl81U= | ||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= | ||
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= | ||
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= | ||
go.mongodb.org/mongo-driver v1.16.0 h1:tpRsfBJMROVHKpdGyc1BBEzzjDUWjItxbVSZ8Ls4BQ4= | ||
go.mongodb.org/mongo-driver v1.16.0/go.mod h1:oB6AhJQvFQL4LEHyXi6aJzQJtBiTQHiAd83l0GdFaiw= | ||
go.opentelemetry.io/otel v1.28.0 h1:/SqNcYk+idO0CxKEUOtKQClMK/MimZihKYMruSMViUo= | ||
go.opentelemetry.io/otel v1.28.0/go.mod h1:q68ijF8Fc8CnMHKyzqL6akLO46ePnjkgfIMIjUIX9z4= | ||
go.opentelemetry.io/otel/metric v1.28.0 h1:f0HGvSl1KRAU1DLgLGFjrwVyismPlnuU6JD6bOeuA5Q= | ||
go.opentelemetry.io/otel/metric v1.28.0/go.mod h1:Fb1eVBFZmLVTMb6PPohq3TO9IIhUisDsbJoL/+uQW4s= | ||
go.opentelemetry.io/otel/trace v1.28.0 h1:GhQ9cUuQGmNDd5BTCP2dAvv75RdMxEfTmYejp+lkx9g= | ||
go.opentelemetry.io/otel/trace v1.28.0/go.mod h1:jPyXzNPg6da9+38HEwElrQiHlVMTnVfM3/yv2OlIHaI= | ||
golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= | ||
golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= | ||
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | ||
golang.org/x/sys v0.22.0 h1:RI27ohtqKCnwULzJLqkv897zojh5/DwS/ENaMzUOaWI= | ||
golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= | ||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= | ||
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= | ||
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= |
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,49 @@ | ||
package internal | ||
|
||
import ( | ||
"fmt" | ||
"time" | ||
) | ||
|
||
type FormattedAge struct { | ||
Days, Weeks, Hours int | ||
} | ||
|
||
// FormatAge returns the age of a cluster as the number of weeks, days, and hours. | ||
func FormatAge(clusterAge time.Duration) (*FormattedAge, error) { | ||
const hoursPerWeek int = 168 | ||
hoursAge := int(clusterAge.Hours()) | ||
if hoursAge < 0 { | ||
return nil, fmt.Errorf("%v is less than zero hours", hoursAge) | ||
} | ||
weeks := hoursAge / hoursPerWeek | ||
remainingHours := hoursAge - weeks*hoursPerWeek | ||
days := remainingHours / 24 | ||
hours := remainingHours % 24 | ||
return &FormattedAge{ | ||
Days: days, | ||
Weeks: weeks, | ||
Hours: hours, | ||
}, nil | ||
} | ||
|
||
// GetFormattedAge returns a formatted string representation of the cluster's age. | ||
// It uses FormatAge to calculate the age in weeks, days, and hours and formats | ||
// the output accordingly. | ||
func GetFormattedAge(clusterAge time.Duration) (*string, error) { | ||
fa, err := FormatAge(clusterAge) | ||
if err != nil { | ||
return nil, err | ||
} | ||
var formattedString string | ||
if fa.Weeks > 0 { | ||
formattedString = fmt.Sprintf("%d weeks ", fa.Weeks) | ||
} | ||
if fa.Days > 0 { | ||
formattedString = fmt.Sprintf("%s%d days ", formattedString, fa.Days) | ||
} | ||
if fa.Hours > 0 { | ||
formattedString = fmt.Sprintf("%s%d hours", formattedString, fa.Hours) | ||
} | ||
return &formattedString, 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
package internal_test | ||
|
||
import ( | ||
"errors" | ||
"testing" | ||
"time" | ||
|
||
"github.com/spectrocloud/palette-samples/cluster-scanner/internal" | ||
) | ||
|
||
type TestCase struct { | ||
input string | ||
expectedHours, expectedDays, expectedWeeks int | ||
expectedError error | ||
output string | ||
} | ||
|
||
func TestFormatAge (t *testing.T) { | ||
tc := map[string]TestCase{ | ||
"positive duration":{ | ||
input:"2h", | ||
expectedHours:2, | ||
}, | ||
"duration with weeks": { | ||
input: "336h", | ||
expectedWeeks:2, | ||
}, | ||
"duration with days": { | ||
input: "48h", | ||
expectedDays:2, | ||
}, | ||
"duration with hours and days": { | ||
input: "74h", | ||
expectedDays:3, | ||
expectedHours:2, | ||
}, | ||
"duration with hours, days, and weeks": { | ||
input: "914h", | ||
expectedDays:3, | ||
expectedHours:2, | ||
expectedWeeks:5, | ||
}, | ||
"zero duration":{ | ||
input: "0h", | ||
output: "", | ||
}, | ||
"negative duration":{ | ||
input:"-2h", | ||
expectedError: errors.New("-2 is less than zero hours"), | ||
}, | ||
} | ||
|
||
for key, value := range tc { | ||
t.Run(key, func(t *testing.T){ | ||
duration, err := time.ParseDuration(value.input) | ||
if err != nil { | ||
t.Errorf("Error parsing duration: %v", err) | ||
} | ||
|
||
fa, err := internal.FormatAge(duration) | ||
|
||
if value.expectedError != nil && err == nil { | ||
t.Errorf("Expected an error, but got none") | ||
} | ||
if value.expectedError == nil && err != nil { | ||
t.Errorf("Unexpected error: %v", err) | ||
} | ||
if value.expectedError != nil && err != nil { | ||
if value.expectedError.Error() != err.Error() { | ||
t.Errorf("Errors do not match: got %v, want %v", err, value.expectedError.Error()) | ||
} | ||
} | ||
if fa != nil { | ||
if fa.Weeks != value.expectedWeeks { | ||
t.Errorf("got %d weeks, want %d weeks", fa.Weeks, value.expectedWeeks) | ||
} | ||
if fa.Days != value.expectedDays { | ||
t.Errorf("got %d days, want %d days", fa.Days, value.expectedDays) | ||
} | ||
if fa.Hours != value.expectedHours { | ||
t.Errorf("got %d hours, want %d hours", fa.Hours, value.expectedHours) | ||
} | ||
} | ||
}) | ||
} | ||
} | ||
|
||
func TestGetFormattedAge(t *testing.T) { | ||
tc := map[string]TestCase{ | ||
"duration with hours": { | ||
input: "2h", | ||
output: "2 hours", | ||
}, | ||
"duration with weeks": { | ||
input: "336h", | ||
output: "2 weeks ", | ||
}, | ||
"duration with days": { | ||
input: "48h", | ||
output: "2 days ", | ||
}, | ||
"duration with hours and days": { | ||
input: "74h", | ||
output: "3 days 2 hours", | ||
}, | ||
"duration with hours, days, and weeks": { | ||
input: "914h", | ||
output: "5 weeks 3 days 2 hours", | ||
}, | ||
"negative duration": { | ||
input: "-2h", | ||
expectedError: errors.New("-2 is less than zero hours"), | ||
}, | ||
"zero duration": { | ||
input: "0h", | ||
output: "", | ||
}, | ||
} | ||
|
||
for key, value := range tc { | ||
t.Run(key, func(t *testing.T) { | ||
duration, err := time.ParseDuration(value.input) | ||
if err != nil { | ||
t.Errorf("Error parsing duration: %v", err) | ||
} | ||
|
||
faString, err := internal.GetFormattedAge(duration) | ||
|
||
if value.expectedError != nil && err == nil { | ||
t.Errorf("Expected an error, but got none") | ||
} | ||
if value.expectedError == nil && err != nil { | ||
t.Errorf("Unexpected error: %v", err) | ||
} | ||
if value.expectedError != nil && err != nil { | ||
if value.expectedError.Error() != err.Error() { | ||
t.Errorf("Errors do not match: got %v, want %v", err, value.expectedError.Error()) | ||
} | ||
} | ||
if faString != nil { | ||
if *faString != value.output { | ||
t.Errorf("got '%s', want '%s'", *faString, value.output) | ||
} | ||
} | ||
}) | ||
} | ||
|
||
} |
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,12 @@ | ||
package internal | ||
|
||
import ( | ||
"github.com/spectrocloud/palette-sdk-go/api/models" | ||
"github.com/spectrocloud/palette-sdk-go/client" | ||
) | ||
|
||
// SearchClusters retrieves a list of cluster summaries from the Palette client. | ||
func SearchClusters(paletteClient *client.V1Client) ([]*models.V1SpectroClusterSummary, error) { | ||
// Search for clusters using the provided Palette client with default filters and sorting. | ||
return paletteClient.SearchClusterSummaries(&models.V1SearchFilterSpec{}, []*models.V1SearchFilterSortSpec{}) | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Clever 🤓