Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/install/installer/pkg/components/spicedb/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 spicedb
6
7
const (
8
Component = "spicedb"
9
10
ContainerHTTPPort = 8443
11
ContainerHTTPName = "http"
12
13
ContainerGRPCPort = 50051
14
ContainerGRPCName = "grpc"
15
16
ContainerDashboardPort = 8080
17
ContainerDashboardName = "dashboard"
18
19
ContainerDispatchPort = 50053
20
ContainerDispatchName = "dispatch"
21
22
ContainerPrometheusPort = 9090
23
ContainterPrometheusName = "prometheus"
24
25
RegistryRepo = "registry.hub.docker.com"
26
RegistryImage = "authzed/spicedb"
27
ImageTag = "v1.25.0"
28
29
ContainerName = "spicedb"
30
31
CloudSQLProxyPort = 3306
32
33
SecretPresharedKeyName = "presharedKey"
34
BootstrapConfigMapName = "spicedb-bootstrap"
35
)
36
37