Skip to content
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

feat: Search by name for WorkflowTemplates in UI #11684

Merged
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions api/openapi-spec/swagger.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

143 changes: 97 additions & 46 deletions pkg/apiclient/workflowtemplate/workflow-template.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pkg/apiclient/workflowtemplate/workflow-template.proto
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ message WorkflowTemplateGetRequest {

message WorkflowTemplateListRequest {
string namespace = 1;
k8s.io.apimachinery.pkg.apis.meta.v1.ListOptions listOptions = 2;
string namePattern = 2;
k8s.io.apimachinery.pkg.apis.meta.v1.ListOptions listOptions = 3;
Comment on lines -27 to +28

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

changing the tag numbers is apparently a breaking change in protobufs, see #13160 (comment) for more details.

}

message WorkflowTemplateUpdateRequest {
Expand Down
6 changes: 4 additions & 2 deletions sdks/java/client/docs/WorkflowTemplateServiceApi.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading