-
Notifications
You must be signed in to change notification settings - Fork 44
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
Global vars #359
Global vars #359
Conversation
Signed-off-by: David Wertenteil <dwertent@armosec.io>
Signed-off-by: David Wertenteil <dwertent@armosec.io>
Signed-off-by: David Wertenteil <dwertent@armosec.io>
Signed-off-by: David Wertenteil <dwertent@armosec.io>
Signed-off-by: David Wertenteil <dwertent@armosec.io>
PR Description updated to latest commit (0afaf47) |
PR Analysis
PR Feedback
How to useInstructions
|
@@ -212,6 +212,7 @@ matches the snapshot: | |||
app.kubernetes.io/name: gateway | |||
tier: ks-control-plane | |||
spec: | |||
affinity: null |
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.
is it OK to have null
like that?
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.
Yup
Type
enhancement
Description
This PR introduces several enhancements to the kubescape-operator Helm chart:
PR changes walkthrough
11 files
daemonset.yaml
charts/kubescape-operator/templates/node-agent/daemonset.yaml
The file
daemonset.yaml
has been updated to include globalvolumes and volumeMounts. It also includes custom scheduling
options for nodeSelector, affinity, and tolerations. The
previous individual volume and volumeMount configurations
have been removed.
host-scanner-definition.yaml
charts/kubescape-operator/assets/host-scanner-definition.yaml
The
host-scanner-definition.yaml
file has been updated toinclude custom scheduling options for nodeSelector,
affinity, and tolerations. It also includes global volumes
and volumeMounts. The previous individual scheduling
configurations have been removed.
cronjob.yaml
charts/kubescape-operator/templates/kubevuln-scheduler/cronjob.yaml
The
cronjob.yaml
file underkubevuln-scheduler
has beenupdated to include custom scheduling options for
nodeSelector, affinity, and tolerations. The previous
individual scheduling configurations have been removed.
kubevuln-cronjob-full.yaml
charts/kubescape-operator/assets/kubevuln-cronjob-full.yaml
The
kubevuln-cronjob-full.yaml
file has been updated toinclude custom scheduling options for nodeSelector,
affinity, and tolerations. The previous individual
scheduling configurations have been removed.
cronjob.yaml
charts/kubescape-operator/templates/kubescape-scheduler/cronjob.yaml
The
cronjob.yaml
file underkubescape-scheduler
has beenupdated to include custom scheduling options for
nodeSelector, affinity, and tolerations. The previous
individual scheduling configurations have been removed.
kubescape-cronjob-full.yaml
charts/kubescape-operator/assets/kubescape-cronjob-full.yaml
The
kubescape-cronjob-full.yaml
file has been updated toinclude custom scheduling options for nodeSelector,
affinity, and tolerations. The previous individual
scheduling configurations have been removed.
registry-scan-cronjob-full.yaml
charts/kubescape-operator/assets/registry-scan-cronjob-full.yaml
The
registry-scan-cronjob-full.yaml
file has been updatedto include custom scheduling options for nodeSelector,
affinity, and tolerations. The previous individual
scheduling configurations have been removed.
deployment.yaml
charts/kubescape-operator/templates/storage/deployment.yaml
The
deployment.yaml
file understorage
has been updatedto include custom scheduling options for nodeSelector,
affinity, and tolerations. The previous individual
scheduling configurations have been removed.
deployment.yaml
charts/kubescape-operator/templates/kubevuln/deployment.yaml
The
deployment.yaml
file underkubevuln
has been updatedto include custom scheduling options for nodeSelector,
affinity, and tolerations. The previous individual
scheduling configurations have been removed.
statefulset.yaml
charts/kubescape-operator/templates/kollector/statefulset.yaml
The
statefulset.yaml
file underkollector
has beenupdated to include custom scheduling options for
nodeSelector, affinity, and tolerations. The previous
individual scheduling configurations have been removed.
values.yaml
charts/kubescape-operator/values.yaml
The
values.yaml
file has been updated to include newcustomScheduling
configuration options for nodeSelector,affinity, and tolerations.
1 files
README.md
charts/kubescape-operator/README.md
The
README.md
file has been updated to includedocumentation for the new
customScheduling
configurationoptions.
User description
Overview