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/mysql 12 13//go:embed mysql/* 14var mysql embed.FS 15 16func MySQL() *Chart { 17 return &Chart{ 18 Name: "mysql", 19 Location: "mysql/", 20 Content: &mysql, 21 } 22} 23 24