Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/install/installer/pkg/components/ws-manager-mk2/constants.go
2501 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 wsmanagermk2
6
7
import "github.com/gitpod-io/gitpod/installer/pkg/common"
8
9
const (
10
Component = common.WSManagerMk2Component
11
RPCPort = 8080
12
RPCPortName = "rpc"
13
HealthPort = 9090
14
TLSSecretNameSecret = "ws-manager-mk2-tls"
15
TLSSecretNameClient = "ws-manager-mk2-client-tls"
16
VolumeConfig = "config"
17
VolumeTLSCerts = "tls-certs"
18
VolumeWorkspaceTemplate = "workspace-template"
19
WorkspaceTemplatePath = "/workspace-templates"
20
WorkspaceTemplateConfigMap = "workspace-templates"
21
)
22
23