-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Spotinst: Feature/add multi arch in VNG and resource tag specification #16099
Spotinst: Feature/add multi arch in VNG and resource tag specification #16099
Conversation
Hi @yehielnetapp. Thanks for your PR. I'm waiting for a kubernetes 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/test-infra repository. |
/ok-to-test |
Thanks @yehielnetapp. |
@@ -524,7 +537,7 @@ func (b *SpotInstanceGroupModelBuilder) buildOcean(c *fi.CloudupModelBuilderCont | |||
|
|||
klog.V(4).Infof("Adding task: Ocean/%s", fi.ValueOf(ocean.Name)) | |||
c.AddTask(ocean) | |||
|
|||
klog.V(4).Infof("Finish task: Ocean/%s", fi.ValueOf(ocean.Name)) |
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.
It doesn't matter, but (I think) AddTask should be almost instant (and only fails if there's a naming conflict, IIRC) - it just inserts an entry into a map.
// convert spec from api that reply for multi arch data only in spec.images | ||
if spec.Images != nil && len(spec.Images) > 1 { | ||
spec.SetImageId(fi.PtrTo(fi.ValueOf(spec.Images[0].ImageId))) | ||
actual.OtherArchitectureImages = append(actual.OtherArchitectureImages, fi.ValueOf(spec.Images[1].ImageId)) |
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.
Nit: Do you want to loop over these other images, so we support more than just 2 in future?
@@ -1139,3 +1174,26 @@ func (o *LaunchSpec) convertBlockDeviceMapping(in *awstasks.BlockDeviceMapping) | |||
|
|||
return out | |||
} | |||
func buildImages(cloud awsup.AWSCloud, ImageID *string, OtherArchitectureImages []string) ([]*aws.Images, error) { |
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.
Nit: s/ImageID/imageID and s/OtherArchitectureImages/otherArchitectureImages
Thanks @yehielnetapp - a few nits, but nothing blocking /approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: justinsb The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Feature add
0) update spotinst SDK in vendor github.com/spotinst/[email protected]
1)It will be possible to set multi AMI per Virtual Node Group, one for each architecture (x86, arm)
2)add tag to track storage costs on their end on the VNG level.
this is logical PR of : #15839 after changes
in: #15839 (comment)