mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
32 lines
1.4 KiB
Go
32 lines
1.4 KiB
Go
// 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"
|
|
githubAppCertSecret = "github-app-cert-secret"
|
|
IAMSessionPort = common.ServerIAMSessionPort
|
|
IAMSessionPortName = "session"
|
|
InstallationAdminPort = common.ServerInstallationAdminPort
|
|
InstallationAdminName = "install-admin"
|
|
DebugPortName = "debug"
|
|
DebugNodePortName = "debugnode"
|
|
ServicePort = 3000
|
|
personalAccessTokenSigningKeyMountPath = "/secrets/personal-access-token-signing-key"
|
|
AdminSecretName = "server-admin-secret"
|
|
AdminSecretLoginKeyName = "login-key"
|
|
AdminSecretMountPath = "/admin"
|
|
)
|