Skip to content

Commit

Permalink
Merge pull request #47 from Crumby/waiting-refactorization
Browse files Browse the repository at this point in the history
Use 0 grace period for pods deletion during clean up
  • Loading branch information
Crumby authored Jan 30, 2018
2 parents 5c4c215 + bc1e65b commit a5435f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/cz/xtf/openshift/OpenShiftUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ public void clean() {
client.services().delete();
client.builds().delete();
client.routes().delete();
client.pods().delete();
client.pods().withGracePeriod(0).delete();
client.persistentVolumeClaims().delete();
client.autoscaling().horizontalPodAutoscalers().delete();
client.configMaps().delete();
Expand Down

0 comments on commit a5435f1

Please sign in to comment.