mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
27 lines
743 B
Go
27 lines
743 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:81cd2bc173dc5feae01236ce47baf4513f78c80e604c819d05df8250a6215d9d"
|
|
|
|
ExporterRegistryRepo = "quay.io"
|
|
ExporterRegistryImage = "oliver006/redis_exporter"
|
|
ExporterImageDigest = "sha256:dbd410eb9255016c9440b40b8fa18872fdf0e7972d06fc1df8d5b120d35efe05"
|
|
|
|
ExporterContainerName = "exporter"
|
|
ExporterPortName = "exporter"
|
|
ExporterPort = 9500
|
|
)
|