Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/install/installer/third_party/charts/minio.go
2499 views
1
// Copyright (c) 2021 Gitpod GmbH. All rights reserved.
2
// Licensed under the GNU Affero General Public License (AGPL).
3
// See License.AGPL.txt in the project root for license information.
4
5
package charts
6
7
import (
8
"embed"
9
)
10
11
// Imported from https://github.com/bitnami/charts/tree/master/bitnami/minio
12
13
//go:embed minio/*
14
var minio embed.FS
15
16
func Minio() *Chart {
17
return &Chart{
18
Name: "minio",
19
Location: "minio/",
20
Content: &minio,
21
}
22
}
23
24