Skip to content

Commit

Permalink
Merge pull request #158 from kube-tarian/get-cluster-api-update
Browse files Browse the repository at this point in the history
add clusterName get cluster app config api response
  • Loading branch information
vramk23 authored Aug 11, 2023
2 parents 6441dea + 61ff038 commit 52b434c
Show file tree
Hide file tree
Showing 2 changed files with 299 additions and 277 deletions.
6 changes: 4 additions & 2 deletions proto/server.proto
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ message GetClusterAppsRequest {
message GetClusterAppsResponse {
StatusCode status = 1;
string statusMessage = 2;
repeated ClusterAppConfig appConfigs = 3;
string clusterName = 3;
repeated ClusterAppConfig appConfigs = 4;
}

message GetClusterAppRequest {
Expand All @@ -103,7 +104,8 @@ message GetClusterAppLaunchConfigsRequest {
message GetClusterAppLaunchConfigsResponse {
StatusCode status = 1;
string statusMessage = 2;
repeated AppLaunchConfig appLaunchConfig = 3;
string clusterName = 3;
repeated AppLaunchConfig appLaunchConfig = 4;
}

message ClusterInfo {
Expand Down
Loading

0 comments on commit 52b434c

Please sign in to comment.