-
Notifications
You must be signed in to change notification settings - Fork 55
KATA-3493: toml file should include image annotations #497
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
Conversation
@balintTobik: This pull request references KATA-3493 which is a valid jira issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
@balintTobik: This pull request references KATA-3493 which is a valid jira issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
Hi @balintTobik. Thanks for your PR. I'm waiting for a openshift member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
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.
Hi @balintTobik ! Thanks for working on that.
Overall change looks good. One issue though is that the PR contains a merge commit which is best avoided : we only want to see your changes there, not the various things you had to do in order to keep your PR in sync with the base branch.
The typical way of syncing pending work on top of the base branch is to git rebase
in your local repo and force push to the PR. Please refresh your PR so that it just have the KATA-3493: update configuration-remote.toml
commit (and address the newline nit on the way).
785ed09
to
ea64a18
Compare
extend enable_annotations list with "image", "default_gpus" and "gpu_model" and regenerate mc-40-kata-remote-config.yaml Signed-off-by: Balint Tobik <[email protected]>
ea64a18
to
489e59f
Compare
/ok-to-test |
@balintTobik: all tests passed! Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed 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.
/lgtm
Thanks @balintTobik !
Pre-merged tested by myself :
|
- Description of the problem which is fixed/What is the use case
current default annotations doesn't include "image", it should be patched during operator deployment to be like:
enable_annotations = ["default_vcpus", "default_memory", "machine_type", "image", "default_gpus", "gpu_model" ]
Fixes: KATA-3493
- What I did
Extended hypervisor.remote's enable_annotation field with "image", "default_gpus" and "gpu_model" values.
Generated them to mc-40-kata-remote-config.yaml machineconfig.
- How to verify it
Operator should populate these new values to /opt/kata/configuration-remote.toml file on kata nodes.
- Description for the changelog
Add "image", "default_gpus" and "gpu_model" to enable_annotation field in configuration.toml and regenarate mc-40-kata-remote-config.yaml.