-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathconstants.go
28 lines (25 loc) · 921 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
// Copyright (c) 2021 Gitpod GmbH. All rights reserved.
// Licensed under the GNU Affero General Public License (AGPL).
// See License-AGPL.txt in the project root for license information.
package server
import (
"github.com/gitpod-io/gitpod/installer/pkg/common"
)
const (
Component = common.ServerComponent
ContainerPort = 3000
ContainerPortName = "http"
authProviderFilePath = "/gitpod/auth-providers"
licenseFilePath = "/gitpod/license"
chargebeeMountPath = "/chargebee"
stripeSecretMountPath = "/stripe-secret"
stripeConfigMountPath = "/stripe-config"
githubAppCertSecret = "github-app-cert-secret"
PrometheusPort = 9500
PrometheusPortName = "metrics"
InstallationAdminPort = common.ServerInstallationAdminPort
InstallationAdminName = "install-admin"
DebugPortName = "debug"
DebugNodePortName = "debugnode"
ServicePort = 3000
)