Skip to content

Commit

Permalink
fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
csviri committed Aug 10, 2023
1 parent 9c1d614 commit a06f51d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static void applyAndWait(KubernetesClient client, List<HasMetadata> resou
if (transformer != null) {
resources = resources.stream().map(transformer).collect(Collectors.toList());
}
client.resourceList(resources).create();
client.resourceList(resources).createOrReplace();
client.resourceList(resources).waitUntilReady(3, TimeUnit.MINUTES);
}

Expand Down
2 changes: 1 addition & 1 deletion samples/quarkus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<version>1.1.2-SNAPSHOT</version>
</parent>
<groupId>org.acme</groupId>
<artifactId>dev-service-kube-config-update-bug</artifactId>
<artifactId>quarkus-sample</artifactId>
<properties>
<compiler-plugin.version>3.11.0</compiler-plugin.version>
<maven.compiler.release>17</maven.compiler.release>
Expand Down

0 comments on commit a06f51d

Please sign in to comment.