Increase k8s timeout
parent
c022d6e656
commit
931aa95dc9
|
|
@ -2407,7 +2407,7 @@ class KubernetesStorage {
|
||||||
yield async_wait_until_1.default(() => __awaiter(this, void 0, void 0, function* () {
|
yield async_wait_until_1.default(() => __awaiter(this, void 0, void 0, function* () {
|
||||||
return (yield this.getPVCPhase(kubeClient, name, namespace)) !== 'Pending';
|
return (yield this.getPVCPhase(kubeClient, name, namespace)) !== 'Pending';
|
||||||
}), {
|
}), {
|
||||||
timeout: 500000,
|
timeout: 750000,
|
||||||
intervalBetweenAttempts: 15000,
|
intervalBetweenAttempts: 15000,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -51,7 +51,7 @@ class KubernetesStorage {
|
||||||
return (await this.getPVCPhase(kubeClient, name, namespace)) !== 'Pending';
|
return (await this.getPVCPhase(kubeClient, name, namespace)) !== 'Pending';
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
timeout: 500000,
|
timeout: 750000,
|
||||||
intervalBetweenAttempts: 15000,
|
intervalBetweenAttempts: 15000,
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue