I'm not able to call shared library function using JTE in K8s cluster

podTemplate(label: kubernetes, yaml: readTrusted(‘pod.yaml’)) {
timestamps {
node(“kubernetes”) {
stage(‘Info’) {
sh ‘whoami’
container(‘node’) {
sh ‘node -v’
}
}
}
}
}