-
Notifications
You must be signed in to change notification settings - Fork 114
Open
Description
Tell us about your request
Support for Confidential VMs in Azure Karpenter Provider.
Tell us about the problem you're trying to solve. What are you trying to do, and why is it hard?
Confidential VMs offer an additional layer of secure computing. The provider codebase currently checks for Confidential VM sizes EC or DC and restricts them.
// confidential VMs (DC, EC) are not yet supported by this Karpenter provider
func (p *DefaultProvider) isConfidential(sku *skewer.SKU) bool {
size := sku.GetSize()
return strings.HasPrefix(size, "DC") || strings.HasPrefix(size, "EC")
}
Source:
Are you currently working around this issue?
There is no current work around in using Karpenter with Confidential VMs.
Additional Context
No response
Attachments
No response
Community Note
- Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
- Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
- If you are interested in working on this issue or have submitted a pull request, please leave a comment
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Backlog