mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
26 lines
720 B
Go
26 lines
720 B
Go
// Copyright (c) 2021 Gitpod GmbH. All rights reserved.
|
|
// Licensed under the GNU Affero General Public License (AGPL).
|
|
// See License.AGPL.txt in the project root for license information.
|
|
|
|
package redis
|
|
|
|
const (
|
|
Component = "redis"
|
|
|
|
PortName = "api"
|
|
Port = 6379
|
|
|
|
RegistryRepo = "cgr.dev"
|
|
RegistryImage = "chainguard/redis"
|
|
|
|
ContainerName = "redis"
|
|
ImageDigest = "sha256:0079ef033ca595fe6ecac828ef3d46b00836e074d0aa738b1e09f5a0f2909a39"
|
|
|
|
ExporterRegistryImage = "chainguard/prometheus-redis-exporter"
|
|
ExporterImageDigest = "sha256:79f57af48f18674f0db84aa32253e09c018a9b28c7c8a01de2d473e8717897e3"
|
|
|
|
ExporterContainerName = "exporter"
|
|
ExporterPortName = "exporter"
|
|
ExporterPort = 9500
|
|
)
|