Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
haitch committed Jul 24, 2024
1 parent c19d9c9 commit 76d0dc4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/deploy-lts-prow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:
subscriptionId: ${{ vars.AZURE_SUBSCRIPTION_ID }}
resourceGroupName: ${{ vars.AZURE_RG }}
template: ./config/prow/cluster/prow-cluster.bicep
parameters: |
aks_cluster_region=westus2
aks_cluster_admins=${{ secrets.PROW_ADMINS }}
failOnStdErr: false

- name: Fetch config
Expand Down
2 changes: 2 additions & 0 deletions config/prow/cluster/prow-cluster.bicep
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
param aks_cluster_region string = 'westus3'
param aks_cluster_prefix string = 'aks-lts-prow'
param aks_cluster_admins array = []
param system_vm_sku string = 'Standard_DS3_v2'
param prow_vm_sku string = 'Standard_DS3_v2'
param test_vm_sku string = 'Standard_D16s_v5'
Expand Down Expand Up @@ -75,6 +76,7 @@ resource aks 'Microsoft.ContainerService/managedClusters@2023-03-01' = {
aadProfile: {
managed: true
enableAzureRBAC: false
adminGroupObjectIDs: aks_cluster_admins
}
storageProfile: {
diskCSIDriver: {
Expand Down

0 comments on commit 76d0dc4

Please sign in to comment.