Skip to content

Commit de6566e

Browse files
az containerapp env create: Update minimumCount from 0 to 1 for --enable-dedicated-gpu (#8484)
Co-authored-by: xinyu pang <[email protected]>
1 parent 587055c commit de6566e

File tree

4 files changed

+7024
-3540
lines changed

4 files changed

+7024
-3540
lines changed

src/containerapp/HISTORY.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Release History
55
upcoming
66
++++++
77
* 'az containerapp sessionpool update': Fix updating registry credentials with `--registry-username` and `--registry-password` when existing registry credentials are empty
8+
* 'az containerapp env create': Update minimumCount from 0 to 1 for `--enable-dedicated-gpu`
89

910
1.1.0b2
1011
++++++

src/containerapp/azext_containerapp/containerapp_env_decorator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def set_up_workload_profiles(self):
128128
gpu_profile = {
129129
"workloadProfileType": "NC24-A100",
130130
"name": "gpu",
131-
"minimumCount": 0,
131+
"minimumCount": 1,
132132
"maximumCount": 1
133133
}
134134
workload_profiles.append(gpu_profile)

0 commit comments

Comments
 (0)