Path: blob/main/install/installer/pkg/components/spicedb/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 spicedb56const (7Component = "spicedb"89ContainerHTTPPort = 844310ContainerHTTPName = "http"1112ContainerGRPCPort = 5005113ContainerGRPCName = "grpc"1415ContainerDashboardPort = 808016ContainerDashboardName = "dashboard"1718ContainerDispatchPort = 5005319ContainerDispatchName = "dispatch"2021ContainerPrometheusPort = 909022ContainterPrometheusName = "prometheus"2324RegistryRepo = "registry.hub.docker.com"25RegistryImage = "authzed/spicedb"26ImageTag = "v1.25.0"2728ContainerName = "spicedb"2930CloudSQLProxyPort = 33063132SecretPresharedKeyName = "presharedKey"33BootstrapConfigMapName = "spicedb-bootstrap"34)353637