File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
components/ws-manager/pkg/manager Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ import (
28
28
29
29
"github.com/gitpod-io/gitpod/common-go/kubernetes"
30
30
wsk8s "github.com/gitpod-io/gitpod/common-go/kubernetes"
31
+ "github.com/gitpod-io/gitpod/common-go/log"
31
32
"github.com/gitpod-io/gitpod/common-go/tracing"
32
33
"github.com/gitpod-io/gitpod/common-go/util"
33
34
csapi "github.com/gitpod-io/gitpod/content-service/api"
@@ -552,6 +553,11 @@ func (m *Manager) createDefiniteWorkspacePod(startContext *startWorkspaceContext
552
553
}
553
554
ffidx [feature ] = struct {}{}
554
555
556
+ if feature == api .WorkspaceFeatureFlag_PERSISTENT_VOLUME_CLAIM {
557
+ log .WithField ("request" , startContext ).Warn ("Request with PVC enabled. Skipping feature." )
558
+ continue
559
+ }
560
+
555
561
switch feature {
556
562
case api .WorkspaceFeatureFlag_FULL_WORKSPACE_BACKUP :
557
563
removeVolume (& pod , workspaceVolumeName )
You can’t perform that action at this time.
0 commit comments