Skip to content

Commit 36ceca7

Browse files
committed
Fix the filename in env vars
1 parent b00d300 commit 36ceca7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/ws-manager-mk2/controllers/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ func createWorkspaceEnvironment(sctx *startWorkspaceContext) ([]corev1.EnvVar, e
562562
result = append(result, corev1.EnvVar{Name: "THEIA_MINI_BROWSER_HOST_PATTERN", Value: "browser-{{hostname}}"})
563563

564564
const (
565-
customCAMountPath = "/etc/ssl/certs/custom-ca.crt"
565+
customCAMountPath = "/etc/ssl/certs/gitpod-ca.crt"
566566
certsMountPath = "/etc/ssl/certs/"
567567
)
568568

install/installer/pkg/components/cluster/certmanager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func certmanager(ctx *common.RenderContext) ([]runtime.Object, error) {
4949
},
5050
})
5151

52-
gitpodCustomCertificateBundleSource = append(gitpodCaBundleSources, trust.BundleSource{
52+
gitpodCustomCertificateBundleSource = append(gitpodCustomCertificateBundleSource, trust.BundleSource{
5353
Secret: &trust.SourceObjectKeySelector{
5454
Name: ctx.Config.CustomCACert.Name,
5555
KeySelector: trust.KeySelector{Key: "ca.crt"},

0 commit comments

Comments
 (0)