We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, is it possible to somehow configure the option that Cloud Run has for CPU allocation?
It's like this in the Run YAML:
apiVersion: serving.knative.dev/v1 kind: Service metadata: name: SERVICE spec: template: metadata: annotations: run.googleapis.com/cpu-throttling: 'BOOLEAN' name: REVISION
where the bool is:
BOOLEAN with true to set CPU allocation only during request processing, or false to set CPU to always allocated.
That's from https://cloud.google.com/run/docs/configuring/cpu-allocation#yaml
The Python lib here has many related options, such as cpu min-instances, and a way to set labels, but that annotations part is not mentioned in the docs, https://firebase.google.com/docs/reference/functions/2nd-gen/python/firebase_functions.options#firebase_functions.options.EventHandlerOptions
annotations
The text was updated successfully, but these errors were encountered:
Oh I think it's actually possible to set preserve_external_changes to true and then edit the autodeployed YAML manually, we'll go with this now.
preserve_external_changes
Update: we failed doing this so far, though, so hints are welcome..
Sorry, something went wrong.
What sort of configuration options could be added here? Could you give me an example of a use case where you'd need to edit it?
No branches or pull requests
Hi, is it possible to somehow configure the option that Cloud Run has for CPU allocation?
It's like this in the Run YAML:
where the bool is:
That's from https://cloud.google.com/run/docs/configuring/cpu-allocation#yaml
The Python lib here has many related options, such as cpu min-instances, and a way to set labels, but that
annotations
part is not mentioned in the docs, https://firebase.google.com/docs/reference/functions/2nd-gen/python/firebase_functions.options#firebase_functions.options.EventHandlerOptionsThe text was updated successfully, but these errors were encountered: