started implementing the routes and service to interract with a given Minio server

This commit is contained in:
pb
2025-06-26 10:31:48 +02:00
parent 1d363e8f2a
commit 55b88077d4
5 changed files with 272 additions and 130 deletions

View File

@@ -3,12 +3,14 @@ package conf
import "sync"
type Config struct {
Mode string
KubeHost string
KubePort string
KubeCA string
KubeCert string
KubeData string
Mode string
KubeHost string
KubePort string
KubeCA string
KubeCert string
KubeData string
MinioRootKey string
MinioRootSecret string
}
var instance *Config