Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/install/installer/pkg/components/database/cloudsql/constants.go
3604 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 cloudsql
6
7
const (
8
Component = "cloudsqlproxy"
9
ImageRepo = "b.gcr.io/cloudsql-docker"
10
ImageName = "gce-proxy"
11
// https://console.cloud.google.com/gcr/images/cloudsql-docker/global/gce-proxy@sha256:90349f187d20f830168c6d2abe566c05be8dcadbe0df6b9bc1d63327cfc20461/details
12
ImageVersion = "1.33.8-alpine"
13
Port = 3306
14
)
15
16