admin管理员组文章数量:1394099
I'm trying to update a cloud run service using the NodeJs client library (@google-cloud/run).
For a service without GPU the request succeeds, but when I attach a GPU (using pulumi/terraform) I'm no longer able to update the service.
Code to reproduce:
const client = new ServicesClient({
projectId,
})
const request: protos.google.cloud.run.v2.IUpdateServiceRequest = {
// name format: projects/<projectNumber>/locations/<location>/services/<serviceId>
service: { name },
updateMask: { paths: [] },
}
const [operation] = await client.updateService(request)
const [response] = await operation.promise()
console.log(response)
Error:
Error: 13 INTERNAL: Internal error encountered.
at callErrorFromStatus (/app/node_modules/@grpc/grpc-js/src/call.ts:82:17)
at Object.onReceiveStatus (/app/node_modules/@grpc/grpc-js/src/client.ts:360:55)
at Object.onReceiveStatus (/app/node_modules/@grpc/grpc-js/src/client-interceptors.ts:458:34)
at Object.onReceiveStatus (/app/node_modules/@grpc/grpc-js/src/client-interceptors.ts:419:48)
版权声明:本文标题:node.js - Error: 13 INTERNAL: Internal error encountered when updating Cloud Run service with GPU - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744702921a2620665.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论