Skip to content

Commit

Permalink
default apps deploy api to deploy apps from plugin store
Browse files Browse the repository at this point in the history
  • Loading branch information
vramk23 committed Apr 28, 2024
1 parent 7732aab commit 9ea1100
Show file tree
Hide file tree
Showing 14 changed files with 1,305 additions and 313 deletions.
11 changes: 11 additions & 0 deletions capten/agent/internal/api/agent_cluster_apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package api

import (
"context"
"fmt"

"github.com/kube-tarian/kad/capten/common-pkg/agentpb"
)
Expand Down Expand Up @@ -147,3 +148,13 @@ func (a *Agent) GetClusterAppValues(ctx context.Context, request *agentpb.GetClu
StatusMessage: agentpb.StatusCode_name[int32(agentpb.StatusCode_OK)],
}, nil
}

func (a *Agent) DeployDefaultApps(ctx context.Context, request *agentpb.DeployDefaultAppsRequest) (
*agentpb.DeployDefaultAppsResponse, error) {
return nil, fmt.Errorf("not implemented")
}

func (a *Agent) GetClusterDefaultApps(ctx context.Context, request *agentpb.GetDefaultAppsStatusRequest) (
*agentpb.GetDefaultAppsStatusResponse, error) {
return nil, fmt.Errorf("not implemented")
}
4 changes: 2 additions & 2 deletions capten/agent/internal/pb/captenpluginspb/capten_plugins.pb.go

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

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

Loading

0 comments on commit 9ea1100

Please sign in to comment.