-
Notifications
You must be signed in to change notification settings - Fork 8
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
[Security Hardened Shoot Cluster] Rule 2005 Implementation #363
Conversation
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.
Mainly wording suggestions, but overall looks good
timeoutDuration := *shoot.Spec.Kubernetes.Kubelet.StreamingConnectionIdleTimeout | ||
switch { | ||
case timeoutDuration.Minutes() < 5: | ||
checkResults = append(checkResults, rule.FailedCheckResult("The connection timeout is not set to a valid value (< 5m).", rule.NewTarget())) |
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.
Please use allowed/not allowed in the other messages as well.
checkResults = append(checkResults, rule.FailedCheckResult("The connection timeout is not set to a valid value (< 5m).", rule.NewTarget())) | |
checkResults = append(checkResults, rule.FailedCheckResult("The connection timeout is set to a not allowed value (< 5m).", rule.NewTarget())) |
checkResults = append(checkResults, rule.PassedCheckResult("The connection timeout is set to the reccomended value (5m).", rule.NewTarget())) | ||
} else { | ||
timeoutDuration := *shoot.Spec.Kubernetes.Kubelet.StreamingConnectionIdleTimeout | ||
switch { |
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.
This switch can be reused as a function that accepts the timeout duration and the target. The function can return a single check result.
case timeoutDuration.Minutes() < 5: | ||
checkResults = append(checkResults, rule.FailedCheckResult("The connection timeout is not set to a valid value (< 5m).", rule.NewTarget())) | ||
case timeoutDuration.Minutes() == 5: | ||
checkResults = append(checkResults, rule.PassedCheckResult("The connection timeout is set to the reccomended value (5m).", rule.NewTarget())) |
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.
checkResults = append(checkResults, rule.PassedCheckResult("The connection timeout is set to the reccomended value (5m).", rule.NewTarget())) | |
checkResults = append(checkResults, rule.PassedCheckResult("The connection timeout is set to the recommended value (5m).", rule.NewTarget())) |
} else { | ||
timeoutDuration := *shoot.Spec.Kubernetes.Kubelet.StreamingConnectionIdleTimeout | ||
switch { | ||
case timeoutDuration.Minutes() < 5: |
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.
case timeoutDuration.Minutes() < 5: | |
case timeoutDuration < 5*time.Minute: |
checkResults = append(checkResults, rule.FailedCheckResult("The connection timeout is not set to a valid value (< 5m).", rule.NewTarget())) | ||
case timeoutDuration.Minutes() == 5: | ||
checkResults = append(checkResults, rule.PassedCheckResult("The connection timeout is set to the reccomended value (5m).", rule.NewTarget())) | ||
case timeoutDuration.Hours() <= 4: |
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.
case timeoutDuration.Hours() <= 4: | |
case timeoutDuration <= 4*time.Hour: |
case timeoutDuration.Minutes() == 5: | ||
checkResults = append(checkResults, rule.PassedCheckResult("The connection timeout is set to the reccomended value (5m).", rule.NewTarget())) | ||
case timeoutDuration.Hours() <= 4: | ||
checkResults = append(checkResults, rule.PassedCheckResult("The connection timeout is set to a valid value ([5m; 4h]).", rule.NewTarget())) |
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.
checkResults = append(checkResults, rule.PassedCheckResult("The connection timeout is set to a valid value ([5m; 4h]).", rule.NewTarget())) | |
checkResults = append(checkResults, rule.PassedCheckResult("The connection timeout is set to an allowed, but not recommended value (should be 5m).", rule.NewTarget())) |
var checkResults = []rule.CheckResult{} | ||
|
||
if shoot.Spec.Kubernetes.Kubelet == nil || shoot.Spec.Kubernetes.Kubelet.StreamingConnectionIdleTimeout == nil { | ||
checkResults = append(checkResults, rule.PassedCheckResult("The connection timeout is set to the reccomended value (5m).", rule.NewTarget())) |
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.
checkResults = append(checkResults, rule.PassedCheckResult("The connection timeout is set to the reccomended value (5m).", rule.NewTarget())) | |
checkResults = append(checkResults, rule.PassedCheckResult("The connection timeout is not set and therefore will be defaulted to the recommended value (5m).", rule.NewTarget())) |
return rule.Result(r, checkResults...), nil | ||
} | ||
|
||
func evaluateTimeoutDuration(timeoutDuration metav1.Duration, target rule.Target) rule.CheckResult { |
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.
Please move this function definition in the Run func so we do not pollute the whole package.
case timeoutDuration.Duration <= 4*time.Hour: | ||
return rule.PassedCheckResult("The connection timeout is set to an allowed, but not recommended value (should be 5m).", target) | ||
default: | ||
return rule.FailedCheckResult("The connection timeout is not set to a valid value (> 4h).", target) |
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.
return rule.FailedCheckResult("The connection timeout is not set to a valid value (> 4h).", target) | |
return rule.FailedCheckResult("The connection timeout is not set to an allowed value (> 4h).", target) |
case timeoutDuration.Duration < 5*time.Minute: | ||
return rule.FailedCheckResult("The connection timeout is set to a not allowed value (< 5m).", target) | ||
case timeoutDuration.Duration == 5*time.Minute: | ||
return rule.PassedCheckResult("The connection timeout is set to the reccomended value (5m).", target) |
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.
return rule.PassedCheckResult("The connection timeout is set to the reccomended value (5m).", target) | |
return rule.PassedCheckResult("The connection timeout is set to the recommended value (5m).", target) |
case timeoutDuration.Duration <= 4*time.Hour: | ||
return rule.PassedCheckResult("The connection timeout is set to an allowed, but not recommended value (should be 5m).", target) | ||
default: | ||
return rule.FailedCheckResult("The connection timeout is not set to an allowed value (> 4h).", target) |
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.
return rule.FailedCheckResult("The connection timeout is not set to an allowed value (> 4h).", target) | |
return rule.FailedCheckResult("The connection timeout is set to a not allowed value (> 4h).", target) |
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.
I just saw that we use the following wording when the duration is <5m. Let's make this the same across the two cases.
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.
Thanks! Just one nit.
} | ||
|
||
var ( | ||
checkResults = []rule.CheckResult{} |
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.
checkResults = []rule.CheckResult{} | |
checkResults []rule.CheckResult |
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.
/lgtm
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.
/lgtm
What this PR does / why we need it:
This PR implements rule 2005 of the Security Hardened Shoot Cluster Ruleset. It evaluates the kubelet configurations of the main and worker nodes by checking the value of their connection timeouts. The checkResults are in accordance with the DISA STIG guide for rule 245541 ref.
Which issue(s) this PR fixes:
Part of #304
Special notes for your reviewer:
Release note: