mirror of
https://github.com/onepanelio/onepanel.git
synced 2025-10-05 05:36:50 +08:00
28 lines
477 B
Go
28 lines
477 B
Go
package v1
|
|
|
|
type ArtifactRepositoryS3Config struct {
|
|
KeyFormat string
|
|
Bucket string
|
|
Endpoint string
|
|
Insecure string
|
|
Region string
|
|
AccessKeySecret struct {
|
|
Name string
|
|
Key string
|
|
}
|
|
SecretKeySecret struct {
|
|
Name string
|
|
Key string
|
|
}
|
|
AccessKey string
|
|
Secretkey string
|
|
}
|
|
|
|
type ArtifactRepositoryConfig struct {
|
|
S3 *ArtifactRepositoryS3Config
|
|
}
|
|
|
|
type NamespaceConfig struct {
|
|
ArtifactRepository ArtifactRepositoryConfig
|
|
}
|