Add provisioned concurrency support to Fn CLI#716
Open
Conversation
e073dcf to
47865bf
Compare
marvin659
approved these changes
May 7, 2026
47865bf to
336ba3b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds provisioned concurrency support to Fn CLI
It introduces provisioned concurrency parsing, adds support in - fn init, fn create function, and fn update function, and applies provisioned concurrency through the deploy path when using an Oracle provider.
Output rendering in inspect/list will be handled in a separate follow-up PR.
The PR adds support for -
--provisioned-concurrency none
--provisioned-concurrency constant:
add parser/validation helpers for provisioned concurrency syntax
persist provisioned concurrency in func.yaml during fn init
support provisioned concurrency in:
fn init
fn create function
fn update function
fn deploy
apply provisioned concurrency to OCI Functions when using an Oracle provider
warn and ignore the flag for non-Oracle providers
adds targeted tests for parsing, YAML persistence, and provider behaviour
The PR also adds provisioned concurrency output support to Fn CLI so users can verify provisioned concurrency configuration directly from function output.
provisioned concurrency values are displayed in:
It add a structured provisionedConcurrency field to function inspect JSON output and add a compact PC column to function list table output