Skip to content

Commit

Permalink
Set UMN = true only when CMN is not supported according to the API
Browse files Browse the repository at this point in the history
  • Loading branch information
jkilzi committed Jul 31, 2023
1 parent d7da980 commit 65fcdfa
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions libs/ui-lib/lib/ocm/services/ClusterDetailsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,7 @@ const ClusterDetailsService = {
},
};

if (
!values.isCMNSupported &&
(params.cpuArchitecture === CpuArchitecture.ARM || params.platform?.type === 'oci')
) {
if (!values.isCMNSupported) {
params.userManagedNetworking = true;
}

Expand Down

0 comments on commit 65fcdfa

Please sign in to comment.