-
Notifications
You must be signed in to change notification settings - Fork 1
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
Adding a k8s image to the pm configuration #54
base: develop
Are you sure you want to change the base?
Conversation
@@ -28,6 +28,7 @@ def _parse_dict(self, data): | |||
new_data.type = ProcessManagerTypes.SSH | |||
case 'k8s': | |||
new_data.type = ProcessManagerTypes.K8s | |||
new_data.image = data.get("image", 2) |
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.
"2" here is the default for the "image" field, which I guess doesn't make much sense, probably worth putting "ghcr.io/dune-daq/alma9:latest"
instead.
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.
Forgot to add it in the commit, thanks
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
Added the image to k8s-pm-configuration