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:afac5790e45198b8b260b0f37a18a1e27cbdb817ff72a0af1d782d39297689c9"
|
|
|
|
ExporterRegistryImage = "chainguard/prometheus-redis-exporter"
|
|
ExporterImageDigest = "sha256:93cc7ebc933ab36f02cea7cc6b1d0effbb08f4420a0069c2447b84f84182ddca"
|
|
|
|
ExporterContainerName = "exporter"
|
|
ExporterPortName = "exporter"
|
|
ExporterPort = 9500
|
|
)
|