Skip to content

[release-4.14] OCPBUGS-41872: Fix e2e flake: upgrade CRD with deprecated version #865

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

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1472,7 +1472,7 @@ var _ = Describe("Install Plan", func() {
},
{
Name: "v1alpha1",
Served: false,
Served: true,
Storage: false,
Schema: &apiextensionsv1.CustomResourceValidation{
OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
Expand Down Expand Up @@ -1632,7 +1632,6 @@ var _ = Describe("Install Plan", func() {
fetchedInstallPlan, err = fetchInstallPlan(GinkgoT(), crc, installPlanName, generatedNamespace.GetName(), buildInstallPlanPhaseCheckFunc(operatorsv1alpha1.InstallPlanPhaseComplete, operatorsv1alpha1.InstallPlanPhaseFailed))
require.NoError(GinkgoT(), err)
GinkgoT().Logf("Install plan %s fetched with status %s", fetchedInstallPlan.GetName(), fetchedInstallPlan.Status.Phase)

require.Equal(GinkgoT(), tt.expectedPhase, fetchedInstallPlan.Status.Phase)

// Ensure correct in-cluster resource(s)
Expand Down Expand Up @@ -1689,7 +1688,6 @@ var _ = Describe("Install Plan", func() {
validateCRDVersions(GinkgoT(), c, tt.oldCRD.GetName(), expectedVersions)
GinkgoT().Logf("All expected resources resolved %s", fetchedCSV.Status.Phase)
}, tableEntries)

})

Describe("update catalog for subscription", func() {
Expand Down