CI: Move fetch-images sub-command from build-pipeline repo (#55298)

* Move fetch images from build-pipeline

* Modify drone

* Replace zerolog with builtin log

* Fix lint
This commit is contained in:
Dimitris Sotirakis
2022-09-19 11:19:31 +03:00
committed by GitHub
parent 754eea20b3
commit 93e78e2146
8 changed files with 197 additions and 27 deletions
+15
View File
@@ -0,0 +1,15 @@
package docker
import (
"github.com/grafana/grafana/pkg/build/config"
)
type Config struct {
Bucket string
Edition string
Tag string
Distribution []config.Distribution
Archs []config.Architecture
DockerHubRepo string
Security bool
}