解决BUG

This commit is contained in:
fanshuai 2024-04-10 13:53:54 +08:00
parent f7f9e2e6ba
commit af8dddf840
1 changed files with 2 additions and 2 deletions

View File

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