Skip to content

Commit

Permalink
Merge pull request #469 from kube-tarian/default-apps-deploy-api
Browse files Browse the repository at this point in the history
default apps deploy api to deploy apps from plugin store
  • Loading branch information
vramk23 authored Apr 28, 2024
2 parents 7732aab + 9ea1100 commit d655f73
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 d655f73

Please sign in to comment.