Skip to content

Commit

Permalink
ibu mgmt: remove workaround for lca backup/restore bug (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
trewest authored Jun 3, 2024
1 parent 67fda99 commit 1740c5b
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,6 @@ var _ = Describe(
extraNamespace := namespace.NewBuilder(APIClient, extraManifestNamespace)
extraNamespace.Definition.Annotations = make(map[string]string)
extraNamespace.Definition.Annotations["lca.openshift.io/apply-wave"] = "1"
// Workaround: should be removed once bug is resolved
_, err := extraNamespace.Create()
Expect(err).NotTo(HaveOccurred(), "error creating %s namespace", extraManifestNamespace)

By("Create configmap for extra manifests namespace")
extraNamespaceString, err := configmapgenerator.DataFromDefinition(
Expand All @@ -116,9 +113,6 @@ var _ = Describe(
})
extraConfigmap.Definition.Annotations = make(map[string]string)
extraConfigmap.Definition.Annotations["lca.openshift.io/apply-wave"] = "2"
// Workaround: should be removed once bug is resolved
_, err = extraConfigmap.Create()
Expect(err).NotTo(HaveOccurred(), "error creating %s configmap", extraConfigmap)

By("Create configmap for extramanifests configmap")
extraConfigmapString, err := configmapgenerator.DataFromDefinition(
Expand Down

0 comments on commit 1740c5b

Please sign in to comment.