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.
1 parent dd4f7da commit 5984503Copy full SHA for 5984503
packages/k8s/src/hooks/run-script-step.ts
@@ -26,7 +26,8 @@ export async function runScriptStep(
26
await execPodStep(
27
[args.entryPoint, ...args.entryPointArgs],
28
state.jobPod,
29
- JOB_CONTAINER_NAME
+ JOB_CONTAINER_NAME,
30
+ process.stdin
31
)
32
} catch (err) {
33
core.debug(`execPodStep failed: ${JSON.stringify(err)}`)
packages/k8s/src/k8s/index.ts
@@ -525,7 +525,8 @@ export async function isPodContainerAlpine(
525
`'[ $(cat /etc/*release* | grep -i -e "^ID=*alpine*" -c) != 0 ] || exit 1'`
526
],
527
podName,
528
- containerName
+ containerName,
529
530
531
532
isAlpine = false
0 commit comments