-
Notifications
You must be signed in to change notification settings - Fork 9
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
feat(launch): adding agent.nodeSelector
variable for agent chart
#40
Conversation
adding readme docs adding a default value in the values file
@@ -46,6 +46,7 @@ The table below describes all the available variables in the chart: | |||
| `agent.image` | string | No | `wandb/launch-agent-dev:latest` | Container image for the agent. | | |||
| `agent.imagePullPolicy` | string | No | `Always` | Pull policy for the agent container image. | | |||
| `agent.resources` | object | No | Limit to 1 CPU, 1Gi RAM | Pod spec resources block for the agent. | | |||
| `agent.nodeSelector` | object | No | `{}` | Node selector for the agent pod. | |
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.
Does leaving this blank break anything?
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.
nope 👍🏻
charts/launch-agent/Chart.yaml
Outdated
@@ -3,7 +3,7 @@ name: launch-agent | |||
icon: https://em-content.zobj.net/thumbs/240/apple/354/rocket_1f680.png | |||
description: A Helm chart for running the W&B Launch Agent in Kubernetes | |||
type: application | |||
version: 0.11.0 | |||
version: 0.12.0 |
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.
What are the rules for minor vs patch update here?
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.
arbitrary. I'm actually going to do this as a patch
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.
Couple of qs
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.
Stamped since testing with an empty object worked
Adding a variable for the agent pod's
nodeSelector
in the values file for the agent chart.