-
Notifications
You must be signed in to change notification settings - Fork 19
feat(ske): add commands to trigger operations #873
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
base: main
Are you sure you want to change the base?
Conversation
c213269
to
af1e398
Compare
var testCtx = context.WithValue(context.Background(), testCtxKey{}, "foo") | ||
var testClient = &ske.APIClient{} | ||
var testProjectId = uuid.NewString() | ||
var testRegion = "eu01" |
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.
var testRegion = "eu01" | |
const( | |
testRegion = "eu01" | |
testClusterName = "my-cluster" | |
) |
var testCtx = context.WithValue(context.Background(), testCtxKey{}, "foo") | ||
var testClient = &ske.APIClient{} | ||
var testProjectId = uuid.NewString() | ||
var testRegion = "eu01" |
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.
same here
var testCtx = context.WithValue(context.Background(), testCtxKey{}, "foo") | ||
var testClient = &ske.APIClient{} | ||
var testProjectId = uuid.NewString() | ||
var testRegion = "eu01" |
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.
and here
var testCtx = context.WithValue(context.Background(), testCtxKey{}, "foo") | ||
var testClient = &ske.APIClient{} | ||
var testProjectId = uuid.NewString() | ||
var testRegion = "eu01" |
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.
and here
Description
This PR adds the following commands:
Checklist
make fmt
make generate-docs
(will be checked by CI)make test
(will be checked by CI)make lint
(will be checked by CI)