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
// HostAffinityHost requires specifying a particular host via dedicatedHost.host.hostID.
396
+
HostAffinityHostHostAffinity="Host"
397
+
)
398
+
399
+
typeHoststruct {
400
+
// hostID identifies the AWS Dedicated Host on which the instance must run.
401
+
// Use this when hostAffinity is "Host" or when hostAffinity is omitted and you want a specific host.
402
+
// The value must start with "h-" followed by 17 lowercase hexadecimal characters (0-9 and a-f).
403
+
// Maximum length is 19 characters.
404
+
// +kubebuilder:validation:XValidation:rule="self == null || self.matches('^h-[0-9a-f]{17}$')",message="hostID must start with 'h-' followed by 17 lowercase hexadecimal characters (0-9 and a-f)"
Copy file name to clipboardExpand all lines: openapi/openapi.json
+26Lines changed: 26 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22039,6 +22039,10 @@
22039
22039
"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": "dedicatedHost configures placement on AWS Dedicated Hosts. When omitted, the instance is not constrained to a dedicated host. If hostAffinity is set to \"Host\", a host ID must be provided at dedicatedHost.host.hostID. If hostAffinity is set to \"AnyAvailable\", dedicatedHost.host must be omitted. If hostAffinity is omitted and host.hostID is set, the instance starts on that specific host.",
"description": "host specifies a particular dedicated host when required by hostAffinity or when hostAffinity is omitted and you want to target a specific host. Must be omitted when hostAffinity is \"AnyAvailable\".",
"description": "hostAffinity selects how the instance is placed on a dedicated host. Valid values are \"AnyAvailable\", \"Host\", and omitted. - AnyAvailable: the platform selects any available dedicated host; do not set host. - Host: the instance must run on a specific host; set host.hostID. - omitted: if host.hostID is set, the instance runs on that specific host; otherwise no host constraint is applied. When hostAffinity is set, host.hostID is required for \"Host\" and must be omitted for \"AnyAvailable\".",
"description": "hostID identifies the AWS Dedicated Host on which the instance must run. Use this when hostAffinity is \"Host\" or when hostAffinity is omitted and you want a specific host. The value must start with \"h-\" followed by 17 lowercase hexadecimal characters (0-9 and a-f). Maximum length is 19 characters.",
0 commit comments