Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
njuCZ committed Apr 7, 2021
1 parent db403e6 commit 2bc1dd5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1102,18 +1102,18 @@ resource "azurerm_kubernetes_cluster_node_pool" "test" {
node_count = 1
kubelet_config {
cpu_manager_policy = "static"
cpu_cfs_quota_enabled = true
cpu_cfs_quota_period = "10ms"
cpu_manager_policy = "static"
cpu_cfs_quota_enabled = true
cpu_cfs_quota_period = "10ms"
}
linux_os_config {
transparent_huge_page_enabled = "always"
sysctl_config {
fs_aio_max_nr = 65536
fs_file_max = 100000
fs_inotify_max_user_watches = 1000000
fs_aio_max_nr = 65536
fs_file_max = 100000
fs_inotify_max_user_watches = 1000000
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -918,18 +918,18 @@ resource "azurerm_kubernetes_cluster" "test" {
node_count = 1
vm_size = "Standard_DS2_v2"
kubelet_config {
cpu_manager_policy = "static"
cpu_cfs_quota_enabled = true
cpu_cfs_quota_period = "10ms"
cpu_manager_policy = "static"
cpu_cfs_quota_enabled = true
cpu_cfs_quota_period = "10ms"
}
linux_os_config {
transparent_huge_page_enabled = "always"
sysctl_config {
fs_aio_max_nr = 65536
fs_file_max = 100000
fs_inotify_max_user_watches = 1000000
fs_aio_max_nr = 65536
fs_file_max = 100000
fs_inotify_max_user_watches = 1000000
}
}
}
Expand Down

0 comments on commit 2bc1dd5

Please sign in to comment.