diff --git a/capten/common-pkg/pb/agentpb/agent.pb.go b/capten/common-pkg/pb/agentpb/agent.pb.go index 839f445f..2c141135 100644 --- a/capten/common-pkg/pb/agentpb/agent.pb.go +++ b/capten/common-pkg/pb/agentpb/agent.pb.go @@ -1692,6 +1692,7 @@ type AppConfig struct { Category string `protobuf:"bytes,4,opt,name=category,proto3" json:"category,omitempty"` Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty"` ChartName string `protobuf:"bytes,6,opt,name=chartName,proto3" json:"chartName,omitempty"` + RepoName string `protobuf:"bytes,7,opt,name=repoName,proto3" json:"repoName,omitempty"` RepoURL string `protobuf:"bytes,8,opt,name=repoURL,proto3" json:"repoURL,omitempty"` Namespace string `protobuf:"bytes,9,opt,name=namespace,proto3" json:"namespace,omitempty"` CreateNamespace bool `protobuf:"varint,10,opt,name=createNamespace,proto3" json:"createNamespace,omitempty"` diff --git a/capten/deployment-worker/internal/workflows/plugin_workflow.go b/capten/deployment-worker/internal/workflows/plugin_workflow.go index 9268fd52..68233701 100644 --- a/capten/deployment-worker/internal/workflows/plugin_workflow.go +++ b/capten/deployment-worker/internal/workflows/plugin_workflow.go @@ -232,6 +232,7 @@ func executeAppDeployment( Category: req.Category, Description: req.Description, ChartName: req.ChartName + "/" + req.ChartName, + RepoName: req.ChartName, RepoURL: req.ChartRepo, Namespace: req.DefaultNamespace, CreateNamespace: true,