Collect lfs file into .lfs-asset-id file and print
parent
1ad3f2d3a7
commit
0363d7c292
|
|
@ -1466,7 +1466,7 @@ class KubernetesCleanupCronJob {
|
||||||
};
|
};
|
||||||
const hours = new Date().getUTCHours() + 3;
|
const hours = new Date().getUTCHours() + 3;
|
||||||
batchJob.spec = {
|
batchJob.spec = {
|
||||||
schedule: `0 ${hours > 24 ? hours - 24 : hours} * * *`,
|
schedule: `0 ${hours > 23 ? hours - 23 : hours} * * *`,
|
||||||
jobTemplate: {
|
jobTemplate: {
|
||||||
spec: {
|
spec: {
|
||||||
template: { spec },
|
template: { spec },
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -34,7 +34,7 @@ class KubernetesCleanupCronJob {
|
||||||
};
|
};
|
||||||
const hours = new Date().getUTCHours() + 3;
|
const hours = new Date().getUTCHours() + 3;
|
||||||
batchJob.spec = {
|
batchJob.spec = {
|
||||||
schedule: `0 ${hours > 24 ? hours - 24 : hours} * * *`,
|
schedule: `0 ${hours > 23 ? hours - 23 : hours} * * *`,
|
||||||
jobTemplate: {
|
jobTemplate: {
|
||||||
spec: {
|
spec: {
|
||||||
template: { spec },
|
template: { spec },
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue