We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e49d587 + be32708 commit b70712aCopy full SHA for b70712a
test/helpers/kubectl.ts
@@ -56,7 +56,7 @@ export async function applyK8sYaml(pathToYamlDeployment: string): Promise<void>
56
57
export async function createDeploymentFromImage(name: string, image: string, namespace: string) {
58
console.log(`Letting Kubernetes decide how to manage image ${image} with name ${name}`);
59
- await exec(`./kubectl run ${name} --image=${image} -n ${namespace}`);
+ await exec(`./kubectl run ${name} --image=${image} -n ${namespace} -- sleep 999999999`);
60
console.log(`Done Letting Kubernetes decide how to manage image ${image} with name ${name}`);
61
}
62
0 commit comments