-
Notifications
You must be signed in to change notification settings - Fork 1
/
constants.go
31 lines (23 loc) · 893 Bytes
/
constants.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package kube
const (
// ChartGitea the default name of the gitea chart
ChartGitea = "jenkins-x/gitea"
// ServiceJenkins is the name of the Jenkins Service
ServiceJenkins = "jenkins"
// ServiceChartMuseum the service name of the Helm Chart Museum service
ServiceChartMuseum = "jenkins-x-chartmuseum"
// ServiceKubernetesDashboard the kubernetes dashboard
ServiceKubernetesDashboard = "jenkins-x-kubernetes-dashboard"
// the git credentials secret
SecretJenkinsGitCredentials = "jenkins-git-credentials"
// LocalHelmRepoName is the default name of the local chart repository where CI / CD releases go to
LocalHelmRepoName = "releases"
DefaultEnvironmentGitRepoURL = "https://github.com/jenkins-x/default-environment-charts.git"
)
var (
AddonCharts = map[string]string{
"gitea": ChartGitea,
"prometheus": "stable/prometheus",
"grafana": "stable/grafana",
}
)