Skip to content

Commit

Permalink
gpu bye
Browse files Browse the repository at this point in the history
  • Loading branch information
dkirby-ms committed Nov 16, 2024
1 parent f9764a0 commit 722f3b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
7 changes: 4 additions & 3 deletions azure_jumpstart_ag/contoso_hypermarket/bicep/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -93,16 +93,17 @@ param azureOpenAIModel object = {
apiVersion: '2024-08-01-preview'
}

@description('Option to deploy GPU-enabled nodes for the K3s Worker nodes.')
param deployGPUNodes bool = false
// @description('Option to deploy GPU-enabled nodes for the K3s Worker nodes.')
// param deployGPUNodes bool = false

@description('The sku name of the K3s cluster worker nodes.')
@allowed([
'Standard_D8s_v5'
'Standard_NV6ads_A10_v5'
'Standard_NV4as_v4'
])
param k8sWorkerNodesSku string = deployGPUNodes ? 'Standard_NV4as_v4' : 'Standard_D8s_v5'
param k8sWorkerNodesSku string = 'Standard_D8s_v5'
//param k8sWorkerNodesSku string = deployGPUNodes ? 'Standard_NV4as_v4' : 'Standard_D8s_v5'

var templateBaseUrl = 'https://raw.githubusercontent.com/${githubAccount}/azure_arc/${githubBranch}/azure_jumpstart_ag/'
var k3sClusterNodesCount = 2 // Number of nodes to deploy in the K3s cluster
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ param deployBastion = false
param customLocationRPOID = ''
param sshRSAPublicKey = ''
param fabricCapacityAdmin = ''
param deployGPUNodes = false

0 comments on commit 722f3b5

Please sign in to comment.