Skip to content

Commit d3db7da

Browse files
authored
chore: adds deprecates notice to k0s k3s distro (#2739)
1 parent 968fc20 commit d3db7da

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

chart/values.schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -861,11 +861,11 @@
861861
},
862862
"k3s": {
863863
"$ref": "#/$defs/DistroK3s",
864-
"description": "K3S holds K3s relevant configuration."
864+
"description": "[Deprecated] K3S holds K3s relevant configuration."
865865
},
866866
"k0s": {
867867
"$ref": "#/$defs/DistroK0s",
868-
"description": "K0S holds k0s relevant configuration."
868+
"description": "[Deprecated] K0S holds k0s relevant configuration."
869869
}
870870
},
871871
"additionalProperties": false,

chart/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ controlPlane:
251251
requests:
252252
cpu: 40m
253253
memory: 64Mi
254-
# K3S holds K3s relevant configuration.
254+
# [Deprecated] K3S holds K3s relevant configuration.
255255
k3s:
256256
# Enabled specifies if the K3s distro should be enabled. Only one distro can be enabled at the same time.
257257
enabled: false
@@ -280,7 +280,7 @@ controlPlane:
280280
requests:
281281
cpu: 40m
282282
memory: 64Mi
283-
# K0S holds k0s relevant configuration.
283+
# [Deprecated] K0S holds k0s relevant configuration.
284284
k0s:
285285
# Enabled specifies if the k0s distro should be enabled. Only one distro can be enabled at the same time.
286286
enabled: false

config/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1102,10 +1102,10 @@ type Distro struct {
11021102
// K8S holds K8s relevant configuration.
11031103
K8S DistroK8s `json:"k8s,omitempty"`
11041104

1105-
// K3S holds K3s relevant configuration.
1105+
// [Deprecated] K3S holds K3s relevant configuration.
11061106
K3S DistroK3s `json:"k3s,omitempty"`
11071107

1108-
// K0S holds k0s relevant configuration.
1108+
// [Deprecated] K0S holds k0s relevant configuration.
11091109
K0S DistroK0s `json:"k0s,omitempty"`
11101110
}
11111111

0 commit comments

Comments
 (0)