mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-19 23:57:57 +00:00
14 lines
504 B
Go
14 lines
504 B
Go
package v1
|
|
|
|
// InstanceTenancy indicates if instance should run on shared or single-tenant hardware.
|
|
type InstanceTenancy string
|
|
|
|
const (
|
|
// DefaultTenancy instance runs on shared hardware
|
|
DefaultTenancy InstanceTenancy = "default"
|
|
// DedicatedTenancy instance runs on single-tenant hardware
|
|
DedicatedTenancy InstanceTenancy = "dedicated"
|
|
// HostTenancy instance runs on a Dedicated Host, which is an isolated server with configurations that you can control.
|
|
HostTenancy InstanceTenancy = "host"
|
|
)
|