You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AMD SEV-SNP is one of the confidential computing technologies.
This commit adds support for AMD SEV-SNP on AWS, so users can
utilize the confidential computing on the cluster nodes.
Signed-off-by: Fangge Jin <[email protected]>
Copy file name to clipboardExpand all lines: openapi/openapi.json
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21960,6 +21960,11 @@
21960
21960
"type": "string",
21961
21961
"default": ""
21962
21962
},
21963
+
"cpuOptions": {
21964
+
"description": "cpuOptions defines CPU-related settings for the instance, including the confidential computing policy. If unset, no cpuOptions will be included in the API request to AWS, and the instance will use the default CPU options applied by AWS for the selected intance type.",
"description": "credentialsSecret is a reference to the secret with AWS credentials. Otherwise, defaults to permissions provided by attached IAM role where the actuator is running.",
"description": "CPUOptions defines CPU-related settings for the instance, including the confidential computing policy.",
22445
+
"type": "object",
22446
+
"properties": {
22447
+
"confidentialCompute": {
22448
+
"description": "confidentialCompute specifies whether confidential computing should be enabled for the instance, and, if so, which confidential computing technology to use. Valid values are: Disabled, AMDEncrytedVirtualizationNestedPaging When set to Disabled, confidential computing will be disabled for the instance. When set to AMDEncrytedVirtualizationNestedPaging, AMD SEV-SNP will be used as the confidential computing technology for the instance. In this case, ensure the following conditions are met: 1) The selected instance type supports AMD SEV-SNP. 2) The selected AWS region supports AMD SEV-SNP. 3) The selected AMI supports AMD SEV-SNP. More details can be checked at https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/sev-snp.html When omitted, this means no opinion and the AWS platform is left to choose a reasonable default, which is subject to change without notice. The current default is Disabled.",
0 commit comments