-
Notifications
You must be signed in to change notification settings - Fork 696
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Defined notes for BSI SYS.1.6.A15 #12528
base: master
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,38 @@ | ||||||
documentation_complete: true | ||||||
|
||||||
title: 'Limiting Network Bandwidth in Pods' | ||||||
|
||||||
description: |- | ||||||
Network bandwidth, SHOULD be appropriately reserved and limited. | ||||||
|
||||||
rationale: |- | ||||||
Network bandwidth is limited at the pod level and can be determined separately according | ||||||
to incoming and outgoing network bandwidth. | ||||||
For more information about limiting Pod bandwidth on OCP 4 please refer to the Red Hat documentation: | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
{{{ weblink(link="https://access.redhat.com/solutions/5018951") }}} | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
Out of the documetation use the example for the network bandwidth configuration of a pod: | ||||||
<pre> | ||||||
kind: Pod | ||||||
apiVersion: v1 | ||||||
metadata: | ||||||
name: hello-openshift | ||||||
annotations: | ||||||
kubernetes.io/ingress-bandwidth: 2M | ||||||
kubernetes.io/egress-bandwidth: 1M | ||||||
spec: | ||||||
containers: | ||||||
- image: openshift/hello-openshift | ||||||
name: hello-openshift | ||||||
</pre> | ||||||
|
||||||
severity: unknown | ||||||
|
||||||
identifiers: | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please add an identifier |
||||||
|
||||||
references: | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If you do not need references (with the BSI profile you dont because they are automatically generated) just remove the key. |
||||||
|
||||||
ocil_clause: 'Limiting Pod bandwidth on OCP 4' | ||||||
|
||||||
ocil: |- | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
please add content on WHY this helps to secure the cluster or make the cluster more compliant. Something around the lines: |
||||||
Extend pod configuration with bandwidth annotations. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.