Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/install/installer/pkg/components/public-api-server/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 public_api_server
6
7
import (
8
"github.com/gitpod-io/gitpod/installer/pkg/common"
9
)
10
11
const (
12
Component = common.PublicApiComponent
13
14
GRPCPortName = "grpc"
15
GRPCContainerPort = 9001
16
GRPCServicePort = 9001
17
HTTPContainerPort = 9002
18
HTTPServicePort = 9002
19
HTTPPortName = "http"
20
21
oidcClientJWTSigningKeyMountPath = "/secrets/oidc-client-jwt-signing-key"
22
stripeSecretMountPath = "/secrets/stripe-webhook-secret"
23
personalAccessTokenSigningKeyMountPath = "/secrets/personal-access-token-signing-key"
24
)
25
26