-
-
Notifications
You must be signed in to change notification settings - Fork 290
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
150 additions
and
327 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<img src="https://raw.githubusercontent.com/derailed/popeye/master/assets/popeye_logo.png" align="right" width="200" height="auto"/> | ||
|
||
# Release v0.21.0 | ||
|
||
## Notes | ||
|
||
Thank you to all that contributed with flushing out issues and enhancements for Popeye! I'll try to mark some of these issues as fixed. But if you don't mind grab the latest rev and see if we're happier with some of the fixes! If you've filed an issue please help me verify and close. Your support, kindness and awesome suggestions to make Popeye better is as ever very much noticed and appreciated! | ||
|
||
This project offers a GitHub Sponsor button (over here 👆). As you well know this is not pimped out by big corps with deep pockets. If you feel `Popeye` is saving you cycles diagnosing potential cluster issues please consider sponsoring this project!! It does go a long way in keeping our servers lights on and beers in our fridge. | ||
|
||
Also if you dig this tool, please make some noise on social! [@kitesurfer](https://twitter.com/kitesurfer) | ||
|
||
--- | ||
|
||
## Maintenance Release | ||
|
||
--- | ||
|
||
## Resolved Issues | ||
|
||
. [#293](https://github.com/derailed/popeye/issues/293) Spinach documentation | ||
. [#263](https://github.com/derailed/popeye/issues/263) Fix automated action to push releases to krew | ||
|
||
--- | ||
|
||
## Contributed PRs | ||
|
||
Please give `Big Thanks!` and `ATTA Girls/Boys!` to all the fine contributors for making Popeye better for all of us!! | ||
|
||
* [PR #294](https://github.com/derailed/popeye/pull/294) Krew manifest update | ||
|
||
--- | ||
|
||
<img src="https://raw.githubusercontent.com/derailed/popeye/master/assets/imhotep_logo.png" width="32" height="auto"/> © 2024 Imhotep Software LLC. All materials licensed under [Apache v2.0](http://www.apache.org/licenses/LICENSE-2.0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# A Sample AKS Popeye configuration. | ||
popeye: | ||
allocations: | ||
cpu: | ||
# Checks if cpu is under allocated by more than 200% at current load. | ||
underPercUtilization: 200 | ||
# Checks if cpu is over allocated by more than 50% at current load. | ||
overPercUtilization: 50 | ||
memory: | ||
# Checks if mem is under allocated by more than 200% at current load. | ||
underPercUtilization: 200 | ||
# Checks if mem is over allocated by more than 50% at current load. | ||
overPercUtilization: 50 | ||
|
||
# Excludes define rules to exampt resources from sanitization | ||
excludes: | ||
global: | ||
fqns: [rx:kube-system] | ||
|
||
linters: | ||
clusterrolebindings: | ||
instances: | ||
- fqns: [rx:system, rx:aks, rx:omsagent] | ||
|
||
clusterroles: | ||
instances: | ||
- fqns: [omsagent-reader, system, admin, edit, view, cluster-admin] | ||
codes: [400] | ||
|
||
resources: | ||
# Nodes specific sanitization | ||
node: | ||
limits: | ||
cpu: 90 | ||
memory: 80 | ||
|
||
# Pods specific sanitization | ||
pod: | ||
limits: | ||
# Fail if cpu is over 80% | ||
cpu: 80 | ||
# Fail if pod mem is over 75% | ||
memory: 75 | ||
# Fail if more than 3 restarts on any pods | ||
restarts: 3 | ||
|
||
# Code specifies a custom severity level ie critical=3, warn=2, info=1 | ||
overrides: | ||
- codes: 206 | ||
severity: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# A Sample EKS Popeye configuration. | ||
popeye: | ||
allocations: | ||
cpu: | ||
# Checks if cpu is under allocated by more than 200% at current load. | ||
underPercUtilization: 200 | ||
# Checks if cpu is over allocated by more than 50% at current load. | ||
overPercUtilization: 50 | ||
memory: | ||
# Checks if mem is under allocated by more than 200% at current load. | ||
underPercUtilization: 200 | ||
# Checks if mem is over allocated by more than 50% at current load. | ||
overPercUtilization: 50 | ||
|
||
# Excludes define rules to exampt resources from sanitization | ||
excludes: | ||
global: | ||
fqns: [rx:^kube-system,rx:^local-path-storage] | ||
|
||
linters: | ||
clusterroles: | ||
instances: | ||
- fqns: [rx:^eks,rx:^aws-node,rx:^system,admin,edit,view,cluster-admin] | ||
codes: [400] | ||
|
||
resources: | ||
# Nodes specific sanitization | ||
node: | ||
limits: | ||
cpu: 90 | ||
memory: 80 | ||
|
||
# Pods specific sanitization | ||
pod: | ||
limits: | ||
# Fail if cpu is over 80% | ||
cpu: 80 | ||
# Fail if pod mem is over 75% | ||
memory: 75 | ||
# Fail if more than 3 restarts on any pods | ||
restarts: 3 | ||
|
||
|
||
# Code specifies a custom severity level ie critical=3, warn=2, info=1 | ||
overrides: | ||
- codes: 206 | ||
severity: 1 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.