Skip to content

Commit 000eda5

Browse files
Merge pull request #5950 from a-dsouza/disable-ignition-4.18
OCPBUGS-54609: [release-4.18] fix(api): Adjust CRD validation rules to account for ignition server disable
2 parents 9dd5721 + 65123dd commit 000eda5

25 files changed

+414
-132
lines changed

api/hypershift/v1beta1/hosted_controlplane.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ type HostedControlPlane struct {
3434
}
3535

3636
// HostedControlPlaneSpec defines the desired state of HostedControlPlane
37+
// +kubebuilder:validation:XValidation:rule="self.platform.type == 'IBMCloud' ? size(self.services) >= 3 : size(self.services) >= 4",message="spec.services in body should have at least 4 items or 3 for IBMCloud"
3738
type HostedControlPlaneSpec struct {
3839
// ReleaseImage is the release image applied to the hosted control plane.
3940
ReleaseImage string `json:"releaseImage"`
@@ -118,7 +119,6 @@ type HostedControlPlaneSpec struct {
118119
// Services defines metadata about how control plane services are published
119120
// in the management cluster.
120121
// +kubebuilder:validation:MaxItems=6
121-
// +kubebuilder:validation:MinItems=4
122122
Services []ServicePublishingStrategyMapping `json:"services"`
123123

124124
// AuditWebhook contains metadata for configuring an audit webhook

api/hypershift/v1beta1/hostedcluster_types.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,7 @@ const (
351351

352352
// HostedClusterSpec is the desired behavior of a HostedCluster.
353353

354+
// +kubebuilder:validation:XValidation:rule="self.platform.type == 'IBMCloud' ? size(self.services) >= 3 : size(self.services) >= 4",message="spec.services in body should have at least 4 items or 3 for IBMCloud"
354355
// +kubebuilder:validation:XValidation:rule=`self.platform.type != "IBMCloud" ? self.services == oldSelf.services : true`, message="Services is immutable. Changes might result in unpredictable and disruptive behavior."
355356
// +kubebuilder:validation:XValidation:rule=`self.platform.type == "Azure" ? self.services.exists(s, s.service == "APIServer" && s.servicePublishingStrategy.type == "Route" && s.servicePublishingStrategy.route.hostname != "") : true`,message="Azure platform requires APIServer Route service with a hostname to be defined"
356357
// +kubebuilder:validation:XValidation:rule=`self.platform.type == "Azure" ? self.services.exists(s, s.service == "OAuthServer" && s.servicePublishingStrategy.type == "Route" && s.servicePublishingStrategy.route.hostname != "") : true`,message="Azure platform requires OAuthServer Route service with a hostname to be defined"
@@ -471,11 +472,9 @@ type HostedClusterSpec struct {
471472
// Max is 6 to account for OIDC;OVNSbDb for backward compability though they are no-op.
472473
//
473474
// +kubebuilder:validation:MaxItems=6
474-
// +kubebuilder:validation:MinItems=4
475475
// +kubebuilder:validation:ListType=atomic
476476
// -kubebuilder:validation:XValidation:rule="self.all(s, !(s.service == 'APIServer' && s.servicePublishingStrategy.type == 'Route') || has(s.servicePublishingStrategy.route.hostname))",message="If serviceType is 'APIServer' and publishing strategy is 'Route', then hostname must be set"
477-
// -kubebuilder:validation:XValidation:rule="['APIServer', 'OAuthServer', 'Konnectivity', 'Ignition'].all(requiredType, self.exists(s, s.service == requiredType))",message="Services list must contain at least 'APIServer', 'OAuthServer', 'Konnectivity', and 'Ignition' service types"
478-
// -kubebuilder:validation:XValidation:rule="self.filter(s, s.servicePublishingStrategy.type == 'Route' && has(s.servicePublishingStrategy.route) && has(s.servicePublishingStrategy.route.hostname)).all(x, self.filter(y, y.servicePublishingStrategy.type == 'Route' && (has(y.servicePublishingStrategy.route) && has(y.servicePublishingStrategy.route.hostname) && y.servicePublishingStrategy.route.hostname == x.servicePublishingStrategy.route.hostname)).size() <= 1)",message="Each route publishingStrategy 'hostname' must be unique within the Services list."
477+
// -kubebuilder:validation:XValidation:rule="self.platform.type == 'IBMCloud' ? ['APIServer', 'OAuthServer', 'Konnectivity'].all(requiredType, self.exists(s, s.service == requiredType))",message="Services list must contain at least 'APIServer', 'OAuthServer', and 'Konnectivity' service types" : ['APIServer', 'OAuthServer', 'Konnectivity', 'Ignition'].all(requiredType, self.exists(s, s.service == requiredType))",message="Services list must contain at least 'APIServer', 'OAuthServer', 'Konnectivity', and 'Ignition' service types" // -kubebuilder:validation:XValidation:rule="self.filter(s, s.servicePublishingStrategy.type == 'Route' && has(s.servicePublishingStrategy.route) && has(s.servicePublishingStrategy.route.hostname)).all(x, self.filter(y, y.servicePublishingStrategy.type == 'Route' && (has(y.servicePublishingStrategy.route) && has(y.servicePublishingStrategy.route.hostname) && y.servicePublishingStrategy.route.hostname == x.servicePublishingStrategy.route.hostname)).size() <= 1)",message="Each route publishingStrategy 'hostname' must be unique within the Services list."
479478
// -kubebuilder:validation:XValidation:rule="self.filter(s, s.servicePublishingStrategy.type == 'NodePort' && has(s.servicePublishingStrategy.nodePort) && has(s.servicePublishingStrategy.nodePort.address) && has(s.servicePublishingStrategy.nodePort.port)).all(x, self.filter(y, y.servicePublishingStrategy.type == 'NodePort' && (has(y.servicePublishingStrategy.nodePort) && has(y.servicePublishingStrategy.nodePort.address) && y.servicePublishingStrategy.nodePort.address == x.servicePublishingStrategy.nodePort.address && has(y.servicePublishingStrategy.nodePort.port) && y.servicePublishingStrategy.nodePort.port == x.servicePublishingStrategy.nodePort.port )).size() <= 1)",message="Each nodePort publishingStrategy 'nodePort' and 'hostname' must be unique within the Services list."
480479
// TODO(alberto): this breaks the cost budget for < 4.17. We should figure why and enable it back. And If not fixable, consider imposing a minimum version on the management cluster.
481480
// +required

api/hypershift/v1beta1/zz_generated.featuregated-crd-manifests/hostedclusters.hypershift.openshift.io/AAA_ungated.yaml

+36-11
Original file line numberDiff line numberDiff line change
@@ -3826,16 +3826,38 @@ spec:
38263826
type: object
38273827
x-kubernetes-map-type: atomic
38283828
services:
3829-
description: |-
3830-
services specifies how individual control plane services endpoints are published for consumption.
3831-
This requires APIServer;OAuthServer;Konnectivity;Ignition.
3832-
This field is immutable for all platforms but IBMCloud.
3833-
Max is 6 to account for OIDC;OVNSbDb for backward compability though they are no-op.
3834-
3835-
-kubebuilder:validation:XValidation:rule="self.all(s, !(s.service == 'APIServer' && s.servicePublishingStrategy.type == 'Route') || has(s.servicePublishingStrategy.route.hostname))",message="If serviceType is 'APIServer' and publishing strategy is 'Route', then hostname must be set"
3836-
-kubebuilder:validation:XValidation:rule="['APIServer', 'OAuthServer', 'Konnectivity', 'Ignition'].all(requiredType, self.exists(s, s.service == requiredType))",message="Services list must contain at least 'APIServer', 'OAuthServer', 'Konnectivity', and 'Ignition' service types"
3837-
-kubebuilder:validation:XValidation:rule="self.filter(s, s.servicePublishingStrategy.type == 'Route' && has(s.servicePublishingStrategy.route) && has(s.servicePublishingStrategy.route.hostname)).all(x, self.filter(y, y.servicePublishingStrategy.type == 'Route' && (has(y.servicePublishingStrategy.route) && has(y.servicePublishingStrategy.route.hostname) && y.servicePublishingStrategy.route.hostname == x.servicePublishingStrategy.route.hostname)).size() <= 1)",message="Each route publishingStrategy 'hostname' must be unique within the Services list."
3838-
-kubebuilder:validation:XValidation:rule="self.filter(s, s.servicePublishingStrategy.type == 'NodePort' && has(s.servicePublishingStrategy.nodePort) && has(s.servicePublishingStrategy.nodePort.address) && has(s.servicePublishingStrategy.nodePort.port)).all(x, self.filter(y, y.servicePublishingStrategy.type == 'NodePort' && (has(y.servicePublishingStrategy.nodePort) && has(y.servicePublishingStrategy.nodePort.address) && y.servicePublishingStrategy.nodePort.address == x.servicePublishingStrategy.nodePort.address && has(y.servicePublishingStrategy.nodePort.port) && y.servicePublishingStrategy.nodePort.port == x.servicePublishingStrategy.nodePort.port )).size() <= 1)",message="Each nodePort publishingStrategy 'nodePort' and 'hostname' must be unique within the Services list."
3829+
description: "services specifies how individual control plane services
3830+
endpoints are published for consumption.\nThis requires APIServer;OAuthServer;Konnectivity;Ignition.\nThis
3831+
field is immutable for all platforms but IBMCloud.\nMax is 6 to
3832+
account for OIDC;OVNSbDb for backward compability though they are
3833+
no-op.\n\n-kubebuilder:validation:XValidation:rule=\"self.all(s,
3834+
!(s.service == 'APIServer' && s.servicePublishingStrategy.type ==
3835+
'Route') || has(s.servicePublishingStrategy.route.hostname))\",message=\"If
3836+
serviceType is 'APIServer' and publishing strategy is 'Route', then
3837+
hostname must be set\"\n-kubebuilder:validation:XValidation:rule=\"self.platform.type
3838+
== 'IBMCloud' ? ['APIServer', 'OAuthServer', 'Konnectivity'].all(requiredType,
3839+
self.exists(s, s.service == requiredType))\",message=\"Services
3840+
list must contain at least 'APIServer', 'OAuthServer', and 'Konnectivity'
3841+
service types\" : ['APIServer', 'OAuthServer', 'Konnectivity', 'Ignition'].all(requiredType,
3842+
self.exists(s, s.service == requiredType))\",message=\"Services
3843+
list must contain at least 'APIServer', 'OAuthServer', 'Konnectivity',
3844+
and 'Ignition' service types\"\t// -kubebuilder:validation:XValidation:rule=\"self.filter(s,
3845+
s.servicePublishingStrategy.type == 'Route' && has(s.servicePublishingStrategy.route)
3846+
&& has(s.servicePublishingStrategy.route.hostname)).all(x, self.filter(y,
3847+
y.servicePublishingStrategy.type == 'Route' && (has(y.servicePublishingStrategy.route)
3848+
&& has(y.servicePublishingStrategy.route.hostname) && y.servicePublishingStrategy.route.hostname
3849+
== x.servicePublishingStrategy.route.hostname)).size() <= 1)\",message=\"Each
3850+
route publishingStrategy 'hostname' must be unique within the Services
3851+
list.\"\n-kubebuilder:validation:XValidation:rule=\"self.filter(s,
3852+
s.servicePublishingStrategy.type == 'NodePort' && has(s.servicePublishingStrategy.nodePort)
3853+
&& has(s.servicePublishingStrategy.nodePort.address) && has(s.servicePublishingStrategy.nodePort.port)).all(x,
3854+
self.filter(y, y.servicePublishingStrategy.type == 'NodePort' &&
3855+
(has(y.servicePublishingStrategy.nodePort) && has(y.servicePublishingStrategy.nodePort.address)
3856+
&& y.servicePublishingStrategy.nodePort.address == x.servicePublishingStrategy.nodePort.address
3857+
&& has(y.servicePublishingStrategy.nodePort.port) && y.servicePublishingStrategy.nodePort.port
3858+
== x.servicePublishingStrategy.nodePort.port )).size() <= 1)\",message=\"Each
3859+
nodePort publishingStrategy 'nodePort' and 'hostname' must be unique
3860+
within the Services list.\""
38393861
items:
38403862
description: |-
38413863
ServicePublishingStrategyMapping specifies how individual control plane services endpoints are published for consumption.
@@ -3957,7 +3979,6 @@ spec:
39573979
- servicePublishingStrategy
39583980
type: object
39593981
maxItems: 6
3960-
minItems: 4
39613982
type: array
39623983
sshKey:
39633984
description: |-
@@ -4036,6 +4057,10 @@ spec:
40364057
- services
40374058
type: object
40384059
x-kubernetes-validations:
4060+
- message: spec.services in body should have at least 4 items or 3 for
4061+
IBMCloud
4062+
rule: 'self.platform.type == ''IBMCloud'' ? size(self.services) >= 3
4063+
: size(self.services) >= 4'
40394064
- message: Services is immutable. Changes might result in unpredictable
40404065
and disruptive behavior.
40414066
rule: 'self.platform.type != "IBMCloud" ? self.services == oldSelf.services

api/hypershift/v1beta1/zz_generated.featuregated-crd-manifests/hostedclusters.hypershift.openshift.io/AROHCPManagedIdentities.yaml

+36-11
Original file line numberDiff line numberDiff line change
@@ -4304,16 +4304,38 @@ spec:
43044304
type: object
43054305
x-kubernetes-map-type: atomic
43064306
services:
4307-
description: |-
4308-
services specifies how individual control plane services endpoints are published for consumption.
4309-
This requires APIServer;OAuthServer;Konnectivity;Ignition.
4310-
This field is immutable for all platforms but IBMCloud.
4311-
Max is 6 to account for OIDC;OVNSbDb for backward compability though they are no-op.
4312-
4313-
-kubebuilder:validation:XValidation:rule="self.all(s, !(s.service == 'APIServer' && s.servicePublishingStrategy.type == 'Route') || has(s.servicePublishingStrategy.route.hostname))",message="If serviceType is 'APIServer' and publishing strategy is 'Route', then hostname must be set"
4314-
-kubebuilder:validation:XValidation:rule="['APIServer', 'OAuthServer', 'Konnectivity', 'Ignition'].all(requiredType, self.exists(s, s.service == requiredType))",message="Services list must contain at least 'APIServer', 'OAuthServer', 'Konnectivity', and 'Ignition' service types"
4315-
-kubebuilder:validation:XValidation:rule="self.filter(s, s.servicePublishingStrategy.type == 'Route' && has(s.servicePublishingStrategy.route) && has(s.servicePublishingStrategy.route.hostname)).all(x, self.filter(y, y.servicePublishingStrategy.type == 'Route' && (has(y.servicePublishingStrategy.route) && has(y.servicePublishingStrategy.route.hostname) && y.servicePublishingStrategy.route.hostname == x.servicePublishingStrategy.route.hostname)).size() <= 1)",message="Each route publishingStrategy 'hostname' must be unique within the Services list."
4316-
-kubebuilder:validation:XValidation:rule="self.filter(s, s.servicePublishingStrategy.type == 'NodePort' && has(s.servicePublishingStrategy.nodePort) && has(s.servicePublishingStrategy.nodePort.address) && has(s.servicePublishingStrategy.nodePort.port)).all(x, self.filter(y, y.servicePublishingStrategy.type == 'NodePort' && (has(y.servicePublishingStrategy.nodePort) && has(y.servicePublishingStrategy.nodePort.address) && y.servicePublishingStrategy.nodePort.address == x.servicePublishingStrategy.nodePort.address && has(y.servicePublishingStrategy.nodePort.port) && y.servicePublishingStrategy.nodePort.port == x.servicePublishingStrategy.nodePort.port )).size() <= 1)",message="Each nodePort publishingStrategy 'nodePort' and 'hostname' must be unique within the Services list."
4307+
description: "services specifies how individual control plane services
4308+
endpoints are published for consumption.\nThis requires APIServer;OAuthServer;Konnectivity;Ignition.\nThis
4309+
field is immutable for all platforms but IBMCloud.\nMax is 6 to
4310+
account for OIDC;OVNSbDb for backward compability though they are
4311+
no-op.\n\n-kubebuilder:validation:XValidation:rule=\"self.all(s,
4312+
!(s.service == 'APIServer' && s.servicePublishingStrategy.type ==
4313+
'Route') || has(s.servicePublishingStrategy.route.hostname))\",message=\"If
4314+
serviceType is 'APIServer' and publishing strategy is 'Route', then
4315+
hostname must be set\"\n-kubebuilder:validation:XValidation:rule=\"self.platform.type
4316+
== 'IBMCloud' ? ['APIServer', 'OAuthServer', 'Konnectivity'].all(requiredType,
4317+
self.exists(s, s.service == requiredType))\",message=\"Services
4318+
list must contain at least 'APIServer', 'OAuthServer', and 'Konnectivity'
4319+
service types\" : ['APIServer', 'OAuthServer', 'Konnectivity', 'Ignition'].all(requiredType,
4320+
self.exists(s, s.service == requiredType))\",message=\"Services
4321+
list must contain at least 'APIServer', 'OAuthServer', 'Konnectivity',
4322+
and 'Ignition' service types\"\t// -kubebuilder:validation:XValidation:rule=\"self.filter(s,
4323+
s.servicePublishingStrategy.type == 'Route' && has(s.servicePublishingStrategy.route)
4324+
&& has(s.servicePublishingStrategy.route.hostname)).all(x, self.filter(y,
4325+
y.servicePublishingStrategy.type == 'Route' && (has(y.servicePublishingStrategy.route)
4326+
&& has(y.servicePublishingStrategy.route.hostname) && y.servicePublishingStrategy.route.hostname
4327+
== x.servicePublishingStrategy.route.hostname)).size() <= 1)\",message=\"Each
4328+
route publishingStrategy 'hostname' must be unique within the Services
4329+
list.\"\n-kubebuilder:validation:XValidation:rule=\"self.filter(s,
4330+
s.servicePublishingStrategy.type == 'NodePort' && has(s.servicePublishingStrategy.nodePort)
4331+
&& has(s.servicePublishingStrategy.nodePort.address) && has(s.servicePublishingStrategy.nodePort.port)).all(x,
4332+
self.filter(y, y.servicePublishingStrategy.type == 'NodePort' &&
4333+
(has(y.servicePublishingStrategy.nodePort) && has(y.servicePublishingStrategy.nodePort.address)
4334+
&& y.servicePublishingStrategy.nodePort.address == x.servicePublishingStrategy.nodePort.address
4335+
&& has(y.servicePublishingStrategy.nodePort.port) && y.servicePublishingStrategy.nodePort.port
4336+
== x.servicePublishingStrategy.nodePort.port )).size() <= 1)\",message=\"Each
4337+
nodePort publishingStrategy 'nodePort' and 'hostname' must be unique
4338+
within the Services list.\""
43174339
items:
43184340
description: |-
43194341
ServicePublishingStrategyMapping specifies how individual control plane services endpoints are published for consumption.
@@ -4435,7 +4457,6 @@ spec:
44354457
- servicePublishingStrategy
44364458
type: object
44374459
maxItems: 6
4438-
minItems: 4
44394460
type: array
44404461
sshKey:
44414462
description: |-
@@ -4514,6 +4535,10 @@ spec:
45144535
- services
45154536
type: object
45164537
x-kubernetes-validations:
4538+
- message: spec.services in body should have at least 4 items or 3 for
4539+
IBMCloud
4540+
rule: 'self.platform.type == ''IBMCloud'' ? size(self.services) >= 3
4541+
: size(self.services) >= 4'
45174542
- message: Services is immutable. Changes might result in unpredictable
45184543
and disruptive behavior.
45194544
rule: 'self.platform.type != "IBMCloud" ? self.services == oldSelf.services

0 commit comments

Comments
 (0)