I wonder how to increase the number of CPU cores available per individual request on GKE based CloudRun deployed container.
While it is possible to specify --cpu
option to control service limit, I was unable to find way to control request CPU allocation
spec:
container:
image: us.gcr.io/myrepo/myimage
env:
resources:
limits:
cpu: '8'
requests:
cpu: 400m
I also wonder if it is possible to specify --timeout
greater than 10 min?