-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OCPBUGS-53140: Validation for API and Ingress VIPs when using user-managed load balancer #9571
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
ae32f27
Prevent default API and Ingress VIP generation for user-managed load …
dkokkino 4770f5c
Add default load balancer if none is specified
dkokkino 3fbebef
Add unit tests for OpenStack platform defaults
dkokkino 6317f88
Edit manifest test
dkokkino File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
package defaults | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
|
||
configv1 "github.com/openshift/api/config/v1" | ||
"github.com/openshift/installer/pkg/ipnet" | ||
"github.com/openshift/installer/pkg/types" | ||
"github.com/openshift/installer/pkg/types/openstack" | ||
) | ||
|
||
func validPlatform() *openstack.Platform { | ||
return &openstack.Platform{ | ||
Cloud: "test-cloud", | ||
ExternalNetwork: "test-network", | ||
} | ||
} | ||
|
||
func validNetworking() *types.Networking { | ||
return &types.Networking{ | ||
NetworkType: "OVNKubernetes", | ||
MachineNetwork: []types.MachineNetworkEntry{{ | ||
CIDR: *ipnet.MustParseCIDR("10.0.0.0/16"), | ||
}}, | ||
} | ||
} | ||
|
||
func TestSetPlatformDefaults(t *testing.T) { | ||
cases := []struct { | ||
name string | ||
platform *openstack.Platform | ||
config *types.InstallConfig | ||
networking *types.Networking | ||
expectedLB configv1.PlatformLoadBalancerType | ||
expectedAPIVIPs []string | ||
expectedIngressVIPs []string | ||
}{ | ||
{ | ||
name: "No load balancer provided", | ||
platform: func() *openstack.Platform { | ||
p := validPlatform() | ||
return p | ||
}(), | ||
networking: validNetworking(), | ||
expectedAPIVIPs: []string{"10.0.0.5"}, | ||
expectedIngressVIPs: []string{"10.0.0.7"}, | ||
expectedLB: "OpenShiftManagedDefault", | ||
}, | ||
{ | ||
name: "Default Openshift Managed load balancer VIPs provided", | ||
platform: func() *openstack.Platform { | ||
p := validPlatform() | ||
p.LoadBalancer = &configv1.OpenStackPlatformLoadBalancer{ | ||
Type: configv1.LoadBalancerTypeOpenShiftManagedDefault, | ||
} | ||
p.APIVIPs = []string{"10.0.0.2"} | ||
p.IngressVIPs = []string{"10.0.0.3"} | ||
return p | ||
}(), | ||
networking: validNetworking(), | ||
expectedAPIVIPs: []string{"10.0.0.2"}, | ||
expectedIngressVIPs: []string{"10.0.0.3"}, | ||
expectedLB: "OpenShiftManagedDefault", | ||
}, | ||
{ | ||
name: "Default Openshift Managed load balancer no VIPs provided", | ||
platform: func() *openstack.Platform { | ||
p := validPlatform() | ||
p.LoadBalancer = &configv1.OpenStackPlatformLoadBalancer{ | ||
Type: configv1.LoadBalancerTypeOpenShiftManagedDefault, | ||
} | ||
return p | ||
}(), | ||
networking: validNetworking(), | ||
expectedAPIVIPs: []string{"10.0.0.5"}, | ||
expectedIngressVIPs: []string{"10.0.0.7"}, | ||
expectedLB: "OpenShiftManagedDefault", | ||
}, | ||
{ | ||
name: "User managed load balancer VIPs provided", | ||
platform: func() *openstack.Platform { | ||
p := validPlatform() | ||
p.LoadBalancer = &configv1.OpenStackPlatformLoadBalancer{ | ||
Type: configv1.LoadBalancerTypeUserManaged, | ||
} | ||
p.APIVIPs = []string{"192.168.100.10"} | ||
p.IngressVIPs = []string{"192.168.100.11"} | ||
return p | ||
}(), | ||
networking: validNetworking(), | ||
expectedAPIVIPs: []string{"192.168.100.10"}, | ||
expectedIngressVIPs: []string{"192.168.100.11"}, | ||
expectedLB: "UserManaged", | ||
}, | ||
{ | ||
name: "User managed load balancer no VIPs provided", | ||
platform: func() *openstack.Platform { | ||
p := validPlatform() | ||
p.LoadBalancer = &configv1.OpenStackPlatformLoadBalancer{ | ||
Type: configv1.LoadBalancerTypeUserManaged, | ||
} | ||
return p | ||
}(), | ||
networking: validNetworking(), | ||
expectedAPIVIPs: []string(nil), | ||
expectedIngressVIPs: []string(nil), | ||
expectedLB: "UserManaged", | ||
}, | ||
} | ||
for _, tc := range cases { | ||
t.Run(tc.name, func(t *testing.T) { | ||
SetPlatformDefaults(tc.platform, tc.networking) | ||
assert.Equal(t, tc.expectedLB, tc.platform.LoadBalancer.Type, "unexpected loadbalancer") | ||
assert.Equal(t, tc.expectedAPIVIPs, tc.platform.APIVIPs, "unexpected APIVIPs") | ||
assert.Equal(t, tc.expectedIngressVIPs, tc.platform.IngressVIPs, "unexpected IngressVIPs") | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p.LoadBalancer
might be nil, we should guard against it.https://prow.ci.openshift.org/view/gs/test-platform-results/pr-logs/pull/openshift_installer/9571/pull-ci-openshift-installer-main-unit/1902411950734708736#1:build-log.txt%3A229
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for pointing this out. I have now added a guard to create a default openshift managed load balancer if one does not exist.