Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/install/installer/pkg/components/proxy/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 proxy
6
7
import "github.com/gitpod-io/gitpod/installer/pkg/common"
8
9
const (
10
Component = common.ProxyComponent
11
ContainerHTTPPort = common.ProxyContainerHTTPPort
12
ContainerHTTPName = common.ProxyContainerHTTPName
13
ContainerHTTPSPort = common.ProxyContainerHTTPSPort
14
ContainerHTTPSName = common.ProxyContainerHTTPSName
15
ContainerSSHPort = 22
16
ContainerSSHName = "ssh"
17
InitContainerImage = "library/alpine"
18
InitContainerTag = "3.16"
19
KubeRBACProxyRepo = common.KubeRBACProxyRepo
20
KubeRBACProxyImage = common.KubeRBACProxyImage
21
KubeRBACProxyTag = common.KubeRBACProxyTag
22
ReadinessPort = 8003
23
RegistryAuthSecret = common.RegistryAuthSecret
24
RegistryTLSCertSecret = common.RegistryTLSCertSecret
25
ContainerAnalyticsPort = 9546
26
ContainerAnalyticsName = "analytics"
27
ContainerConfigcatPort = common.ProxyConfigcatPort
28
ContainerConfigcatName = "configcat"
29
)
30
31