Skip to content

[Feature] Karpenter supports Confidential VMs #1428

@wdarko1

Description

@wdarko1

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:

karpenter-provider-azure/pkg/providers/instancetype/instancetypes.go at main · Azure/karpenter-provider-azure

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    Status

    Backlog

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions