Path: blob/main/install/installer/pkg/components/proxy/constants.go
2501 views
// Copyright (c) 2021 Gitpod GmbH. All rights reserved.1// Licensed under the GNU Affero General Public License (AGPL).2// See License.AGPL.txt in the project root for license information.34package proxy56import "github.com/gitpod-io/gitpod/installer/pkg/common"78const (9Component = common.ProxyComponent10ContainerHTTPPort = common.ProxyContainerHTTPPort11ContainerHTTPName = common.ProxyContainerHTTPName12ContainerHTTPSPort = common.ProxyContainerHTTPSPort13ContainerHTTPSName = common.ProxyContainerHTTPSName14ContainerSSHPort = 2215ContainerSSHName = "ssh"16InitContainerImage = "library/alpine"17InitContainerTag = "3.16"18KubeRBACProxyRepo = common.KubeRBACProxyRepo19KubeRBACProxyImage = common.KubeRBACProxyImage20KubeRBACProxyTag = common.KubeRBACProxyTag21ReadinessPort = 800322RegistryAuthSecret = common.RegistryAuthSecret23RegistryTLSCertSecret = common.RegistryTLSCertSecret24ContainerAnalyticsPort = 954625ContainerAnalyticsName = "analytics"26ContainerConfigcatPort = common.ProxyConfigcatPort27ContainerConfigcatName = "configcat"28)293031