gthvidsten commented on issue #385:
URL: https://github.com/apache/solr-operator/issues/385#issuecomment-998601234


   This is on an Azure Kubernetes Service with most settings at their default.
   Here's the bicep used to provision up the cluster. All values (except the 
Windows node) should be equal to the default values used when creating a 
cluster directly in the Azure Portal. (We created a cluster in the portal, 
exported the template, converted it to bicep, and minified it as best we could):
   ```
   param nodePoolAvailabilityZones array = [
     '1' 
     '2' 
     '3'
   ]
   param nodeResourceGroupName string
   param aksName string
   
   resource aks_resource 
'Microsoft.ContainerService/managedClusters@2021-08-01' = {
     name: aksName
     location: resourceGroup().location
     properties: {
       kubernetesVersion: '1.20.9'
       dnsPrefix: aksName
       nodeResourceGroup: nodeResourceGroupName
       enableRBAC: true
       agentPoolProfiles: [
         {
           name: 'agentpool'
           osDiskSizeGB: 128
           count: 1
           vmSize: 'Standard_B2s'
           osType: 'Linux'
           maxPods: 110
           enableAutoScaling: false
           type: 'VirtualMachineScaleSets'
           mode: 'System'
           availabilityZones: nodePoolAvailabilityZones
           orchestratorVersion: '1.20.9'
         }
         {
           name: 'winpool'
           osDiskSizeGB: 128
           count: 1
           vmSize: 'Standard_D8s_v3'
           osType: 'Windows'
           maxPods: 110
           enableAutoScaling: false
           type: 'VirtualMachineScaleSets'
           mode: 'User'
           availabilityZones: nodePoolAvailabilityZones
           orchestratorVersion: '1.20.9'
         }
       ]
       addonProfiles: {
         httpApplicationRouting: {
           enabled: false
         }
         azurepolicy: {
           enabled: false
         }
       }
       networkProfile: {
         networkPlugin: 'azure'
         serviceCidr: '10.0.0.0/16'
         dnsServiceIP: '10.0.0.10'
         dockerBridgeCidr: '172.17.0.1/16'
         loadBalancerSku: 'standard'
       }
     }
     identity: {
       type: 'SystemAssigned'
     }
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to