Skip to content

Commit

Permalink
Update to AKS 1.21.2 and reduce NTP firewall rule (#28)
Browse files Browse the repository at this point in the history
* update to AKS 1.21.2

* Remove node pool NTP allowance
  • Loading branch information
ckittel authored Aug 3, 2021
1 parent f42c428 commit 191ba3d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cluster-stamp.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
}
},
"variables": {
"kubernetesVersion": "1.21.1",
"kubernetesVersion": "1.21.2",

"networkContributorRole": "[concat(subscription().Id, '/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7')]",
"monitoringMetricsPublisherRole": "[concat(subscription().Id, '/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb')]",
Expand Down
2 changes: 1 addition & 1 deletion cluster-stamp.v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
}
},
"variables": {
"kubernetesVersion": "1.21.1",
"kubernetesVersion": "1.21.2",

"networkContributorRole": "[concat(subscription().Id, '/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7')]",
"monitoringMetricsPublisherRole": "[concat(subscription().Id, '/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb')]",
Expand Down
8 changes: 2 additions & 6 deletions networking/hub-region.v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -660,10 +660,9 @@
"rules": [
{
"name": "ntp",
"description": "Network Time Protocol (NTP) time synchronization for image builder VMs, nodepool nodes, and jumpboxes.",
"description": "Network Time Protocol (NTP) time synchronization for image builder VMs and jumpboxes.",
"sourceIpGroups": [
"[resourceId('Microsoft.Network/ipGroups', variables('imageBuilderIpGroupName'))]",
"[resourceId('Microsoft.Network/ipGroups', variables('aksIpGroupName'))]",
"[resourceId('Microsoft.Network/ipGroups', variables('aksJumpBoxIpGroupName'))]"
],
"protocols": [
Expand All @@ -672,12 +671,9 @@
"destinationPorts": [
"123"
],
"destinationAddresses": [
"*"
]/*,
"destinationFqdns": [
"ntp.ubuntu.com"
]*/
]
}
]
}
Expand Down

0 comments on commit 191ba3d

Please sign in to comment.