Skip to content

Commit e3b017c

Browse files
authored
Marks isolated control plane as deprecated and fixes ephemeral-storage issue (#3203)
1 parent ed44cd0 commit e3b017c

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

chart/values.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1620,7 +1620,7 @@
16201620
},
16211621
"isolatedControlPlane": {
16221622
"$ref": "#/$defs/ExperimentalIsolatedControlPlane",
1623-
"description": "IsolatedControlPlane is a feature to run the vCluster control plane in a different Kubernetes cluster than the workloads themselves.",
1623+
"description": "IsolatedControlPlane is a feature to run the vCluster control plane in a different Kubernetes cluster than the workloads themselves.\nDeprecated: Will be removed in v0.28.0",
16241624
"pro": true
16251625
},
16261626
"virtualClusterKubeConfig": {

chart/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1190,6 +1190,7 @@ experimental:
11901190
setOwner: true
11911191

11921192
# IsolatedControlPlane is a feature to run the vCluster control plane in a different Kubernetes cluster than the workloads themselves.
1193+
# Deprecated: Will be removed in v0.28.0
11931194
isolatedControlPlane:
11941195
# Headless states that Helm should deploy the vCluster in headless mode for the isolated control plane.
11951196
headless: false

config/config.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2724,6 +2724,7 @@ type Experimental struct {
27242724
GenericSync ExperimentalGenericSync `json:"genericSync,omitempty"`
27252725

27262726
// IsolatedControlPlane is a feature to run the vCluster control plane in a different Kubernetes cluster than the workloads themselves.
2727+
// Deprecated: Will be removed in v0.28.0
27272728
IsolatedControlPlane ExperimentalIsolatedControlPlane `json:"isolatedControlPlane,omitempty" product:"pro"`
27282729

27292730
// VirtualClusterKubeConfig allows you to override distro specifics and specify where vCluster will find the required certificates and vCluster config.

config/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ controlPlane:
315315
ephemeral-storage: 8Gi
316316
memory: 2Gi
317317
requests:
318-
ephemeral-storage: 400Mi
318+
ephemeral-storage: 1Gi
319319
cpu: 200m
320320
memory: 256Mi
321321

0 commit comments

Comments
 (0)