Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/install/installer/third_party/charts/mysql.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/mysql
12
13
//go:embed mysql/*
14
var mysql embed.FS
15
16
func MySQL() *Chart {
17
return &Chart{
18
Name: "mysql",
19
Location: "mysql/",
20
Content: &mysql,
21
}
22
}
23
24