mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-22 01:17:16 +00:00
feat: remove shared repo volume between repo-server and cmp-server (#8600) Signed-off-by: Leonardo Luz Almeida <leonardo_almeida@intuit.com>
63 lines
1.8 KiB
Protocol Buffer
63 lines
1.8 KiB
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "github.com/argoproj/argo-cd/v2/cmpserver/apiclient";
|
|
|
|
package plugin;
|
|
|
|
import "k8s.io/api/core/v1/generated.proto";
|
|
|
|
// AppStreamRequest is the request object used to send the application's
|
|
// files over a stream.
|
|
message AppStreamRequest {
|
|
oneof request {
|
|
ManifestRequestMetadata metadata = 1;
|
|
File file = 2;
|
|
}
|
|
}
|
|
|
|
// ManifestRequestMetadata defines the metada related to the file being sent
|
|
// to the CMP server.
|
|
message ManifestRequestMetadata {
|
|
// appName refers to the ArgoCD Application name
|
|
string appName = 1;
|
|
// appRelPath points to the application relative path inside the tarball
|
|
string appRelPath = 2;
|
|
// checksum is used to verify the integrity of the file
|
|
string checksum = 3;
|
|
// size relates to the file size in bytes
|
|
int64 size = 4;
|
|
// env is a list with the environment variables needed to generate manifests
|
|
repeated EnvEntry env = 5;
|
|
}
|
|
|
|
// EnvEntry represents an entry in the application's environment
|
|
message EnvEntry {
|
|
// Name is the name of the variable, usually expressed in uppercase
|
|
string name = 1;
|
|
// Value is the value of the variable
|
|
string value = 2;
|
|
}
|
|
|
|
message ManifestResponse {
|
|
repeated string manifests = 1;
|
|
string sourceType = 2;
|
|
}
|
|
|
|
message RepositoryResponse {
|
|
bool isSupported = 1;
|
|
}
|
|
|
|
message File {
|
|
bytes chunk = 1;
|
|
}
|
|
|
|
// ConfigManagementPlugin Service
|
|
service ConfigManagementPluginService {
|
|
// GenerateManifests receive a stream containing a tgz archive with all required files necessary
|
|
// to generate manifests
|
|
rpc GenerateManifest(stream AppStreamRequest) returns (ManifestResponse) {
|
|
}
|
|
|
|
// MatchRepository returns whether or not the given application is supported by the plugin
|
|
rpc MatchRepository(stream AppStreamRequest) returns (RepositoryResponse) {
|
|
}
|
|
}
|