Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions governance/steering.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ The working groups are led by chairs (semi-permanent) and maintainers (6 month t
| :-------------------- | :------------------------------------------------------- | :--------------------------------------------------- |
| Infrastructure | | |
| Security | [Rodrigo Bersa](https://github.com/rodrigobersa) | |
| Autoscaling | Rajdeep Saha | [Robert Northard](https://github.com/robertnorthard) |
| Autoscaling | TBD | [Robert Northard](https://github.com/robertnorthard) |
| Resiliency | [Sheetal Joshi](https://github.com/sheetaljoshi) | |
| Windows Containers | | |
| Networking | [Tim Dormer](https://github.com/Tim-AWS) | [Ikenna Izugbokwe](https://github.com/izugbokwe) |
| Networking | [Dumlu Timuralp](https://github.com/dumlutimuralp) | [Ikenna Izugbokwe](https://github.com/izugbokwe) |
| Cost Optimization | | |
| Storage (upcoming) | [Eric Heinrichs](https://github.com/heinrichse) | |
| AI/ML | [Leah Tucker](github.com/tucktuck9) | |


## Contact

Expand Down
Binary file added latest/bpg/images/security/SRM-AUTO.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions latest/bpg/scalability/cluster-services.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ CoreDNS instances can scale by adding additional replicas to the deployment. It'

NodeLocal DNS will require run one instance per node--as a DaemonSet--which requires more compute resources in the cluster, but it will avoid failed DNS requests and decrease the response time for DNS queries in the cluster. The cluster proportional autoscaler will scale CoreDNS based on the number of nodes or cores in the cluster. This isn't a direct correlation to request queries, but can be useful depending on your workloads and cluster size. The default proportional scale is to add an additional replica for every 256 cores or 16 nodes in the cluster--whichever happens first.

If using the https://docs.aws.amazon.com/eks/latest/userguide/managing-coredns.html[CoreDNS EKS add-on], consider enabling the https://docs.aws.amazon.com/eks/latest/userguide/coredns-autoscaling.html[autoscaling] option. The CoreDNS autoscaler dynamically adjusts the number of CoreDNS replicas by monitoring node count and CPU cores, using a formula that takes the maximum of (nodes÷16) or (CPU cores÷256), scaling up immediately when needed and down gradually to maintain stability.

== Scale Kubernetes Metrics Server Vertically

The Kubernetes Metrics Server supports horizontal and vertical scaling. By horizontally scaling the Metrics Server it will be highly available, but it will not scale horizontally to handle more cluster metrics. You will need to vertically scale the Metrics Server based on https://kubernetes-sigs.github.io/metrics-server/#scaling[their recommendations] as nodes and collected metrics are added to the cluster.
Expand Down
Loading