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 5package charts 6 7import ( 8 "embed" 9) 10 11// Imported from https://github.com/bitnami/charts/tree/master/bitnami/minio 12 13//go:embed minio/* 14var minio embed.FS 15 16func Minio() *Chart { 17 return &Chart{ 18 Name: "minio", 19 Location: "minio/", 20 Content: &minio, 21 } 22} 23 24