Skip to content

Commit

Permalink
handle old aks contracts that are missing sku tier (#4056)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-g-town authored Dec 6, 2023
1 parent d5ae3ee commit 6441637
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dashboard/src/components/AzureProvisionerSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,9 @@ const AzureProvisionerSettings: React.FC<Props> = (props) => {
setAzureLocation(aksValues.location);
setClusterVersion(aksValues.clusterVersion);
setCidrRange(aksValues.cidrRange);
setSkuTier(aksValues.skuTier)
if (aksValues.skuTier !== AksSkuTier.UNSPECIFIED) {
setSkuTier(aksValues.skuTier)
}
}
}, [props.selectedClusterVersion]);

Expand Down

0 comments on commit 6441637

Please sign in to comment.