-
Notifications
You must be signed in to change notification settings - Fork 356
feature(helm): Add support for affinities for main deployments #1086
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
base: main
Are you sure you want to change the base?
Changes from all 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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -46,6 +46,9 @@ tolerations: [] | |||||
| # -- Node labels to match for `Pod` [scheduling](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/). | ||||||
| nodeSelector: {} | ||||||
|
|
||||||
| # Affinities for `Pod` https://kubernetes.io/docs/tasks/configure-pod-container/assign-pods-nodes-using-node-affinity/ | ||||||
| affinity: {} | ||||||
|
|
||||||
| # ============================================================================== | ||||||
| # DATABASE CONFIGURATION | ||||||
| # ============================================================================== | ||||||
|
|
@@ -85,6 +88,9 @@ controller: | |||||
|
|
||||||
| # -- Node labels to match for `Pod` [scheduling](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/). | ||||||
| nodeSelector: {} | ||||||
|
|
||||||
| # Affintities for `Pod` https://kubernetes.io/docs/tasks/configure-pod-container/assign-pods-nodes-using-node-affinity/ | ||||||
|
Contributor
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
|
||||||
| affinity: {} | ||||||
|
|
||||||
| image: | ||||||
| registry: "" | ||||||
|
|
@@ -136,6 +142,9 @@ ui: | |||||
| # -- Node labels to match for `Pod` [scheduling](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/). | ||||||
| nodeSelector: {} | ||||||
|
|
||||||
| # Affintities for `Pod` https://kubernetes.io/docs/tasks/configure-pod-container/assign-pods-nodes-using-node-affinity/ | ||||||
Dhouti marked this conversation as resolved.
Show resolved
Hide resolved
Contributor
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
|
||||||
| affinity: {} | ||||||
|
|
||||||
| # ============================================================================== | ||||||
| # LLM PROVIDERS CONFIGURATION | ||||||
| # ============================================================================== | ||||||
|
|
@@ -208,6 +217,15 @@ kagent-tools: | |||||
| memory: 1Gi | ||||||
| tools: | ||||||
| loglevel: "debug" | ||||||
|
|
||||||
| # -- Node taints which will be tolerated for `Pod` [scheduling](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/). | ||||||
| tolerations: [] | ||||||
|
|
||||||
| # -- Node labels to match for `Pod` [scheduling](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/). | ||||||
| nodeSelector: {} | ||||||
|
|
||||||
| # Affintities for `Pod` https://kubernetes.io/docs/tasks/configure-pod-container/assign-pods-nodes-using-node-affinity/ | ||||||
Dhouti marked this conversation as resolved.
Show resolved
Hide resolved
Contributor
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
|
||||||
| affinity: {} | ||||||
|
Comment on lines
+221
to
+228
Contributor
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. In order for these to take effect you'll have to update the helm chart for the tools in https://github.com/kagent-dev/tools |
||||||
|
|
||||||
| # ============================================================================== | ||||||
| # AGENTS | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,6 +24,8 @@ tolerations: [] | |
|
|
||
| nodeSelector: {} | ||
|
|
||
| affinity: {} | ||
|
|
||
| service: | ||
| type: ClusterIP | ||
| port: 8000 | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,6 +20,8 @@ tolerations: [] | |
|
|
||
| nodeSelector: {} | ||
|
|
||
| affinity: {} | ||
|
|
||
| service: | ||
| type: ClusterIP | ||
| port: 8080 | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.