Skip to content

Commit f54ad1c

Browse files
committed
Get rid of unnecessary comments
1 parent 7655daa commit f54ad1c

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

chart/values.schema.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5473,19 +5473,19 @@
54735473
},
54745474
"sleep": {
54755475
"$ref": "#/$defs/Sleep",
5476-
"description": "Sleep holds configuration for automatically putting the virtual cluster to sleep.\nThis replaces sleepMode."
5476+
"description": "Sleep holds configuration for automatically putting the virtual cluster to sleep."
54775477
},
54785478
"snapshots": {
54795479
"$ref": "#/$defs/Snapshots",
5480-
"description": "Snapshots holds configuration for automatic vCluster snapshots.\nThis replaces external.platform.autoSnapshot."
5480+
"description": "Snapshots holds configuration for automatic vCluster snapshots."
54815481
},
54825482
"deletion": {
54835483
"$ref": "#/$defs/Deletion",
5484-
"description": "Deletion holds configuration for automatic vCluster deletion.\nThis replaces external.platform.autoDelete."
5484+
"description": "Deletion holds configuration for automatic vCluster deletion."
54855485
},
54865486
"platform": {
54875487
"$ref": "#/$defs/Platform",
5488-
"description": "Platform holds vCluster Platform specific configuration.\nThis replaces the remaining fields from external.platform."
5488+
"description": "Platform holds vCluster Platform specific configuration."
54895489
}
54905490
},
54915491
"additionalProperties": false,

chart/values.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1271,17 +1271,13 @@ logging:
12711271
encoding: console
12721272

12731273
# Sleep holds configuration for automatically putting the virtual cluster to sleep.
1274-
# This replaces sleepMode.
12751274
sleep: {}
12761275

12771276
# Snapshots holds configuration for automatic vCluster snapshots.
1278-
# This replaces external.platform.autoSnapshot.
12791277
snapshots: {}
12801278

12811279
# Deletion holds configuration for automatic vCluster deletion.
1282-
# This replaces external.platform.autoDelete.
12831280
deletion: {}
12841281

12851282
# Platform holds vCluster Platform specific configuration.
1286-
# This replaces the remaining fields from external.platform.
12871283
platform: {}

config/config.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,19 +96,15 @@ type Config struct {
9696
Logging *Logging `json:"logging,omitempty"`
9797

9898
// Sleep holds configuration for automatically putting the virtual cluster to sleep.
99-
// This replaces sleepMode.
10099
Sleep *vclusterconfig.Sleep `json:"sleep,omitempty"`
101100

102101
// Snapshots holds configuration for automatic vCluster snapshots.
103-
// This replaces external.platform.autoSnapshot.
104102
Snapshots *vclusterconfig.Snapshots `json:"snapshots,omitempty"`
105103

106104
// Deletion holds configuration for automatic vCluster deletion.
107-
// This replaces external.platform.autoDelete.
108105
Deletion *vclusterconfig.Deletion `json:"deletion,omitempty"`
109106

110107
// Platform holds vCluster Platform specific configuration.
111-
// This replaces the remaining fields from external.platform.
112108
Platform *vclusterconfig.Platform `json:"platform,omitempty"`
113109
}
114110

0 commit comments

Comments
 (0)