Skip to content

Commit

Permalink
Fix issue with OLM install to openshift-operators
Browse files Browse the repository at this point in the history
Signed-off-by: David Kornel <[email protected]>
  • Loading branch information
kornys committed Jun 25, 2024
1 parent 19e1f32 commit 4cb439b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/odh/test/install/OlmInstall.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private void createNamespace() {
.withName(namespace)
.endMetadata()
.build();
KubeResourceManager.getInstance().createResourceWithoutWait(ns);
KubeResourceManager.getInstance().createOrUpdateResourceWithWait(ns);
}

/**
Expand Down

0 comments on commit 4cb439b

Please sign in to comment.