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
3608 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:110d60f1f637ae062d037ea6557339ce1ba2842841589e78c60d520acf44e975"
18
19
ExporterRegistryRepo = "quay.io"
20
ExporterRegistryImage = "oliver006/redis_exporter"
21
ExporterImageDigest = "sha256:d392284a607eabf94ed259c5670ef910bb2c54e6ac58593f9c420492a89604d3"
22
23
ExporterContainerName = "exporter"
24
ExporterPortName = "exporter"
25
ExporterPort = 9500
26
)
27
28