Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/install/installer/pkg/components/redis/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 redis
6
7
const (
8
Component = "redis"
9
10
PortName = "api"
11
Port = 6379
12
13
RegistryRepo = "cgr.dev"
14
RegistryImage = "chainguard/redis"
15
16
ContainerName = "redis"
17
ImageDigest = "sha256:663597e0dd93440230f8228f605e564eadc2b6334a862d9284771643cca9fee8"
18
19
ExporterRegistryRepo = "quay.io"
20
ExporterRegistryImage = "oliver006/redis_exporter"
21
ExporterImageDigest = "sha256:1542bc6a88decfc16db6603045accd502cc3a46c46659d7cfd568e1f6965fe59"
22
23
ExporterContainerName = "exporter"
24
ExporterPortName = "exporter"
25
ExporterPort = 9500
26
)
27
28