mirror of
https://github.com/onepanelio/onepanel.git
synced 2025-10-20 20:25:16 +08:00
75 lines
2.1 KiB
Go
75 lines
2.1 KiB
Go
package manager
|
|
|
|
import (
|
|
"github.com/onepanelio/core/model"
|
|
"strconv"
|
|
|
|
"github.com/onepanelio/core/kube"
|
|
"github.com/onepanelio/core/repository"
|
|
"github.com/onepanelio/core/s3"
|
|
"github.com/onepanelio/core/util/env"
|
|
)
|
|
|
|
var (
|
|
labelKeyPrefix = env.GetEnv("KUBE_LABEL_KEY_PREFIX", "onepanel.io/")
|
|
)
|
|
|
|
type ResourceManager struct {
|
|
kubeClient *kube.Client
|
|
workflowRepository *repository.WorkflowRepository
|
|
}
|
|
|
|
const (
|
|
artifactRepositoryEndpointKey = "artifactRepositoryEndpoint"
|
|
artifactRepositoryBucketKey = "artifactRepositoryBucket"
|
|
artifactRepositoryRegionKey = "artifactRepositoryRegion"
|
|
artifactRepositoryInSecureKey = "artifactRepositoryInsecure"
|
|
artifactRepositoryAccessKeyValueKey = "artifactRepositoryAccessKey"
|
|
artifactRepositorySecretKeyValueKey = "artifactRepositorySecretKey"
|
|
)
|
|
|
|
func (r *ResourceManager) getNamespaceConfig(namespace string) (config map[string]string, err error) {
|
|
configMap, err := r.kubeClient.GetConfigMap(namespace, "onepanel")
|
|
if err != nil {
|
|
return
|
|
}
|
|
config = configMap.Data
|
|
|
|
secret, err := r.kubeClient.GetSecret(namespace, &model.Secret{
|
|
Name: "onepanel",
|
|
})
|
|
if err != nil {
|
|
return
|
|
}
|
|
config[artifactRepositoryAccessKeyValueKey] = secret.Data[artifactRepositoryAccessKeyValueKey]
|
|
config[artifactRepositorySecretKeyValueKey] = secret.Data[artifactRepositorySecretKeyValueKey]
|
|
|
|
return
|
|
}
|
|
|
|
func (r *ResourceManager) getS3Client(namespace string, config map[string]string) (s3Client *s3.Client, err error) {
|
|
insecure, err := strconv.ParseBool(config[artifactRepositoryInSecureKey])
|
|
if err != nil {
|
|
return
|
|
}
|
|
s3Client, err = s3.NewClient(s3.Config{
|
|
Endpoint: config[artifactRepositoryEndpointKey],
|
|
Region: config[artifactRepositoryRegionKey],
|
|
AccessKey: config[artifactRepositoryAccessKeyValueKey],
|
|
SecretKey: config[artifactRepositorySecretKeyValueKey],
|
|
InSecure: insecure,
|
|
})
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
func NewResourceManager(db *repository.DB, kubeClient *kube.Client) *ResourceManager {
|
|
return &ResourceManager{
|
|
kubeClient: kubeClient,
|
|
workflowRepository: repository.NewWorkflowRepository(db),
|
|
}
|
|
}
|