|
|
|
@@ -264,7 +264,7 @@ public class K8sClientUtil { |
|
|
|
.withName(podName) |
|
|
|
.withLabels(selector) |
|
|
|
.endMetadata() |
|
|
|
.withNewSpec().withSchedulerName("0 */4 * * *")//默认不被操作4小时后删除 |
|
|
|
.withNewSpec()//默认不被操作4小时后删除 |
|
|
|
.addNewContainer() |
|
|
|
.withName(podName) |
|
|
|
.withImage(image) |
|
|
|
@@ -274,7 +274,7 @@ public class K8sClientUtil { |
|
|
|
.addNewVolume() |
|
|
|
.withName("workspace").withPersistentVolumeClaim(new V1PersistentVolumeClaimVolumeSource().claimName(pvc.getMetadata().getName())) |
|
|
|
.endVolume() |
|
|
|
// .withTerminationGracePeriodSeconds(14400L) //默认不被操作4小时后删除 |
|
|
|
.withTerminationGracePeriodSeconds(14400L) //默认不被操作4小时后删除 |
|
|
|
.endSpec() |
|
|
|
.build(); |
|
|
|
|
|
|
|
|